-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.35 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="transomics2cytoscape",
version="0.0.1",
author="Kozo Nishida",
author_email="kozo.nishida@gmail.com",
maintainer='Kozo Nishida',
maintainer_email='kozo.nishida@gmail.com',
description="An automation for 3D Trans-Omic network visualization with Cytoscape",
long_description=long_description,
long_description_content_type="text/markdown",
url="hhttps://github.com/ecell/transomics2cytoscape-py",
license='MIT License',
keywords=['data visualization', 'visualization',
'bioinformatics', 'graph', 'network'],
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
'py4cytoscape',
'requests'
],
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',
'Topic :: Scientific/Engineering :: Visualization'
],
python_requires='>=3.7',
test_suite='tests',
)