Skip to content

Commit

Permalink
fixing version setup again
Browse files Browse the repository at this point in the history
  • Loading branch information
dutradda committed Dec 12, 2016
1 parent 484427a commit bdd641f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ include falconswagger/swagger_schema_extended.json
include falconswagger/swagger_template.json
include README.md
include requirements.txt
include requirements-dev.txt
include requirements-dev.txt
include version.py
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
# SOFTWARE.


from version import VERSION
from setuptools import setup, find_packages, Extension
import glob
import imp
Expand Down Expand Up @@ -84,10 +85,6 @@ def list_modules(dirname):
ext_modules = []


with open(os.path.join(MYDIR, 'version.txt')) as version_file:
VERSION = version_file.read()


long_description = ''
with open('README.md') as readme:
long_description = readme.read()
Expand Down
1 change: 1 addition & 0 deletions version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VERSION = '0.12.3'
1 change: 0 additions & 1 deletion version.txt

This file was deleted.

0 comments on commit bdd641f

Please sign in to comment.