diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1ff4a44..a40bb0d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,2 +1,2 @@ [bumpversion] -current_version = 1.45.1 +current_version = 1.46.1 diff --git a/setup.py b/setup.py index a0d43a2..9ca71ef 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,7 @@ from setuptools import setup, find_packages +with open('README.rst') as f: + readme = f.read() setup( name='primestg', @@ -17,6 +19,7 @@ 'python-dateutil' ], description='Prime STG-DC Interface Specification', + long_description=readme, classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers',