Skip to content

Commit 8d423bc

Browse files
committed
Merge pull request #310 from enthought/feature/long-description
Fill out setup.py for pypi upload
2 parents 28e145b + 01f59d3 commit 8d423bc

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

setup.py

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,25 @@
2222
'author_email': '[email protected]',
2323
'url': 'https://github.com/enthought/distarray',
2424
'packages': find_packages(),
25-
'install_requires': install_requires
25+
'install_requires': install_requires,
26+
'long_description': open('README.rst').read(),
27+
'url': 'https://github.com/enthought/distarray',
28+
'license': 'BSD',
29+
'platforms': ["Linux" "Mac OS-X"],
30+
'classifiers': [c.strip() for c in """\
31+
Development Status :: 2 - Pre-Alpha
32+
Intended Audience :: Developers
33+
Intended Audience :: Science/Research
34+
License :: OSI Approved :: BSD License
35+
Operating System :: MacOS
36+
Operating System :: OS Independent
37+
Operating System :: POSIX
38+
Operating System :: Unix
39+
Programming Language :: Python
40+
Topic :: Scientific/Engineering
41+
Topic :: Software Development
42+
Topic :: Software Development :: Libraries
43+
""".splitlines() if len(c.strip()) > 0],
2644
}
2745

2846
setup(**metadata)

0 commit comments

Comments
 (0)