|
1 | 1 | from setuptools import setup, find_packages |
| 2 | +import json |
2 | 3 |
|
3 | | -__version__ = '0.0.3' |
| 4 | +__version__ = '0.0.4' |
4 | 5 |
|
5 | 6 | with open("README.md", "r") as f: |
6 | 7 | long_description = f.read() |
|
9 | 10 | name='reactome2py', |
10 | 11 | version=__version__, |
11 | 12 | description='Python client for Reactome content and analysis service API calls.', |
| 13 | + long_description=long_description, |
| 14 | + long_description_content_type='text/markdown', |
12 | 15 | url='https://github.com/reactome/reactome2py', |
13 | 16 | author='Nasim Sanati', |
14 | 17 | author_email='nasim@plenary.org', |
15 | 18 | license='Apache', |
| 19 | + |
16 | 20 | packages=find_packages(), |
17 | 21 | entry_points={ |
18 | 22 | 'console_scripts': ['reactome2py = reactome2py.__main__:main'] |
|
21 | 25 | 'requests', |
22 | 26 | ], |
23 | 27 | extras_require={ |
24 | | - 'pandas': ["pandas==0.24.2"], |
25 | | - 'json': ["json5==0.8.4"], |
| 28 | + 'pandas': ['pandas==0.24.2'], |
| 29 | + 'json': ['json5==0.8.4'], |
26 | 30 | }, |
27 | 31 | tests_require=['pytest'], |
28 | | - long_description=long_description, |
29 | | - long_description_content_type='text/markdown', |
| 32 | + classifiers=[ |
| 33 | + 'Programming Language :: Python', |
| 34 | + 'Programming Language :: Python :: 3.6', |
| 35 | + 'Programming Language :: Python :: 3.7', |
| 36 | + 'License :: OSI Approved :: Apache Software License', |
| 37 | + 'Intended Audience :: Developers', |
| 38 | + 'Intended Audience :: Science/Research', |
| 39 | + 'License :: OSI Approved :: Apache Software License', |
| 40 | + 'Topic :: Software Development :: Libraries', |
| 41 | + 'Topic :: Scientific/Engineering', |
| 42 | + 'Topic :: Scientific/Engineering :: Bio-Informatics' |
| 43 | + ], |
| 44 | + platforms=['any'], |
| 45 | + python_requires='>=3.6', |
30 | 46 | ) |
0 commit comments