From b5a02cdb21e00dc612add76ab4c27508c0726f84 Mon Sep 17 00:00:00 2001 From: Paul Robertson Date: Fri, 19 Oct 2018 15:57:20 -0400 Subject: [PATCH] use the readme as the project description --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e8640c1..61fbc92 100644 --- a/setup.py +++ b/setup.py @@ -8,10 +8,13 @@ else: python_dateutils_version = 'python-dateutil<2.0' +with open('README.md', 'r') as f: + long_description = f.read() setup(name='pyactiveresource', version=version, description='ActiveResource for Python', + long_description=long_description, author='Shopify', author_email='developers@shopify.com', url='https://github.com/Shopify/pyactiveresource/', @@ -37,7 +40,7 @@ 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', - 'Topic :: Software Development', + 'Topic :: Software Development', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules'] )