1
0
forked from VimPlug/jedi

version can now be changed in one file (for sphinx and pypi)

This commit is contained in:
David Halter
2012-12-27 17:25:25 +01:00
parent 4c2c86ae72
commit 422eb6cbbf
3 changed files with 13 additions and 4 deletions

View File

@@ -7,9 +7,11 @@ __AUTHOR_EMAIL__ = 'davidhalter88@gmail.com'
readme = open('README.rst').read()
with open('VERSION') as f:
VERSION = f.read().strip()
setup(name='jedi',
version='0.5b5',
version=VERSION,
description='An autocompletion tool for Python that can be used for text editors.',
author=__AUTHOR__,
author_email=__AUTHOR_EMAIL__,