We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0753873 commit 4049542Copy full SHA for 4049542
setup.py
@@ -32,10 +32,15 @@
32
ext_modules = []
33
34
35
+with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
36
+ readme = f.read()
37
+
38
39
setuptools.setup(
40
name='immutables',
41
version=VERSION,
42
description='Immutable Collections',
43
+ long_description=readme,
44
classifiers=[
45
'License :: OSI Approved :: Apache Software License',
46
'Intended Audience :: Developers',
@@ -45,7 +50,6 @@
50
'Operating System :: MacOS :: MacOS X',
51
'Operating System :: Microsoft :: Windows',
47
52
],
48
- platforms=['POSIX'],
49
53
author='MagicStack Inc',
54
author_email='[email protected]',
55
url='https://github.com/MagicStack/immutables',
0 commit comments