Skip to content

Commit

Permalink
install fixed?
Browse files Browse the repository at this point in the history
  • Loading branch information
victorlei committed Nov 5, 2016
1 parent 8a2dfb0 commit 7c33166
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import os
from setuptools import setup

from smop.version import __version__
__VERSION__ = "0.30"

open("smop/version.py","w").write("__version__='%s'\n" % __VERSION__)

setup(
author = 'Victor Leikehman',
Expand All @@ -12,7 +14,7 @@
url = 'https://github.com/victorlei/smop',
download_url = 'https://github.com/victorlei/smop/archive/master.zip',
name = 'smop',
version = __version__,
version = __VERSION__,
entry_points = { 'console_scripts': [ 'smop = smop.main:main', ], },
packages = ['smop'],
#package_dir = {'':'src'},
Expand Down
2 changes: 1 addition & 1 deletion smop/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.29'
__version__='0.30'

0 comments on commit 7c33166

Please sign in to comment.