Skip to content

Commit

Permalink
Add a makefile, and a manifest and fix bug in setup, where README.md …
Browse files Browse the repository at this point in the history
…was missing
  • Loading branch information
rantav committed Dec 10, 2013
1 parent 45a8c80 commit 6c8aa28
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
README
README.md
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
release:
python setup.py sdist upload
1 change: 1 addition & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Please see documentation here: https://github.com/rantav/flask-restful-swagger
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
except ImportError:
from distutils.core import setup

with open('README.md') as file:
with open('README') as file:
long_description = file.read()

setup(name='flask-restful-swagger',
version='0.1',
version='0.1.1',
url='https://github.com/rantav/flask-restful-swagger',
packages=['flask_restful_swagger'],
description='Extrarct swagger specs from your flast-restful project',
Expand Down

0 comments on commit 6c8aa28

Please sign in to comment.