Commit 6a755c5a authored by Stephan Richter's avatar Stephan Richter

Move version into setup() call, so zest.releaser can work with it.

parent 391a0ac7
...@@ -11,11 +11,9 @@ ...@@ -11,11 +11,9 @@
# FOR A PARTICULAR PURPOSE. # FOR A PARTICULAR PURPOSE.
# #
############################################################################## ##############################################################################
"""Setup
__version__ = '1.4.2dev' """
import os import os
from setuptools import setup, find_packages from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__)) here = os.path.abspath(os.path.dirname(__file__))
...@@ -24,7 +22,7 @@ README = (open(os.path.join(here, 'README.rst')).read() ...@@ -24,7 +22,7 @@ README = (open(os.path.join(here, 'README.rst')).read()
open(os.path.join(here, 'CHANGES.rst')).read()) open(os.path.join(here, 'CHANGES.rst')).read())
setup(name='transaction', setup(name='transaction',
version=__version__, version='1.4.2dev',
description='Transaction management for Python', description='Transaction management for Python',
long_description=README, long_description=README,
classifiers=[ classifiers=[
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment