# HG changeset patch # User Aurélien Campéas # Date 1684142498 -7200 # Mon May 15 11:21:38 2023 +0200 # Node ID 4eedfca364188a4af32fa60c6545783c72f1d7cf # Parent ae206d6403aa8c84dc2ecddc7c45a14466df559b have a __version__ attribute in the package root diff --git a/rework/__init__.py b/rework/__init__.py --- a/rework/__init__.py +++ b/rework/__init__.py @@ -0,0 +1,1 @@ +__version__ = '0.16.0' diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -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',