Skip to content

Commit 4049542

Browse files
committed
setup: Add long_description
1 parent 0753873 commit 4049542

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,15 @@
3232
ext_modules = []
3333

3434

35+
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
36+
readme = f.read()
37+
38+
3539
setuptools.setup(
3640
name='immutables',
3741
version=VERSION,
3842
description='Immutable Collections',
43+
long_description=readme,
3944
classifiers=[
4045
'License :: OSI Approved :: Apache Software License',
4146
'Intended Audience :: Developers',
@@ -45,7 +50,6 @@
4550
'Operating System :: MacOS :: MacOS X',
4651
'Operating System :: Microsoft :: Windows',
4752
],
48-
platforms=['POSIX'],
4953
author='MagicStack Inc',
5054
author_email='[email protected]',
5155
url='https://github.com/MagicStack/immutables',

0 commit comments

Comments
 (0)