-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
60 lines (56 loc) · 2.32 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from setuptools import setup
from setuptools import find_packages
def get_long_description(file_name):
with open(file_name) as f:
return f.read()
if __name__ == '__main__':
setup(
name='easy_entrez',
packages=find_packages(),
package_data={'easy_entrez': ['data/*.tsv', 'py.typed']},
# required for mypy to work
zip_safe=False,
version='0.3.7',
license='MIT',
description='Python REST API for Entrez E-Utilities: stateless, easy to use, reliable.',
long_description=get_long_description('README.md'),
long_description_content_type='text/markdown',
author='Michal Krassowski',
author_email='krassowski.michal+pypi@gmail.com',
url='https://github.com/krassowski/easy-entrez',
keywords=['entrez', 'pubmed', 'e-utilities', 'ncbi', 'rest', 'api', 'dbsnp', 'literature', 'mining'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Topic :: Utilities',
'Topic :: Database',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Software Development :: Libraries :: Python Modules',
'Typing :: Typed',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
],
python_requires=">=3.7",
install_requires=['requests', 'typing_extensions'],
extras_require={
'with_progress_bars': ['tqdm'],
'with_parsing_utils': ['pandas'],
'docs': [
'myst-parser',
'pydata-sphinx-theme',
'sphinx<6.0',
'sphinx-autodoc-typehints',
'sphinx-copybutton',
'sphinx_rtd_theme',
]
}
)