-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (35 loc) · 1.29 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
import setuptools
# Nasty but effective way to set __version__
__version__=None
exec(open("bridgedbpy/_version.py").read())
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='bridgedbpy',
version=__version__,
author="Kozo Nishida",
author_email="[email protected]",
maintainer="Kozo Nishida",
maintainer_email="[email protected]",
description="Code for using BridgeDb identifier mapping framework from within Python",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/kozo2/bridgedbpy',
license='AGPL-3',
keywords=['wikipathways', 'bioinformatics'],
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=['requests', 'pandas'],
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics'
],
python_requires='>=3.7',
test_suite='tests',
)