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 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
__version__ = '1.4.2dev'
"""Setup
"""
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
......@@ -24,7 +22,7 @@ README = (open(os.path.join(here, 'README.rst')).read()
open(os.path.join(here, 'CHANGES.rst')).read())
setup(name='transaction',
version=__version__,
version='1.4.2dev',
description='Transaction management for Python',
long_description=README,
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