have a __version__ attribute in the package root
2 files changed, 4 insertions(+), 1 deletions(-) A rework/__init__.py M setup.py
A rework/__init__.py +1 -0
M setup.py +3 -1
@@ 1,12 1,14 @@ from pathlib import Path from setuptools import setup +from rework import __version__ + doc = Path(__file__).parent / 'README.md' setup(name='rework', - version='0.16.0', + version=__version__, author='Aurelien Campeas', author_email='aurelien.campeas@pythonian.fr', description='A database backed distributed task dispatcher',