1
0
forked from VimPlug/jedi

remove VERSION file in favor of a jedi.__version__

This commit is contained in:
David Halter
2013-05-11 11:10:01 +04:30
parent ad56b6cc89
commit f30b3416e8
3 changed files with 6 additions and 8 deletions

View File

@@ -8,8 +8,8 @@ __AUTHOR_EMAIL__ = 'davidhalter88@gmail.com'
readme = open('README.rst').read()
with open('VERSION') as f:
VERSION = f.read().strip()
import jedi
VERSION = '.'.join(str(x) for x in jedi.__version__)
setup(name='jedi',
version=VERSION,