From 40495427c5b1c6f42faec5b4b6418228aa6247c6 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Tue, 3 Apr 2018 21:51:29 -0400 Subject: setup: Add long_description --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 40877c0..308083e 100644 --- a/setup.py +++ b/setup.py @@ -32,10 +32,15 @@ else: ext_modules = [] +with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f: + readme = f.read() + + setuptools.setup( name='immutables', version=VERSION, description='Immutable Collections', + long_description=readme, classifiers=[ 'License :: OSI Approved :: Apache Software License', 'Intended Audience :: Developers', @@ -45,7 +50,6 @@ setuptools.setup( 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft :: Windows', ], - platforms=['POSIX'], author='MagicStack Inc', author_email='hello@magic.io', url='https://github.com/MagicStack/immutables', -- cgit v1.2.3