-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
56 lines (51 loc) · 1.74 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
import setuptools
# Nasty but effective way to set __version__
__version__=None
exec(open("py4cytoscape/_version.py").read())
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="py4cytoscape",
version=__version__,
author="Barry Demchak",
author_email="bdemchak@ucsd.edu",
maintainer='Barry Demchak',
maintainer_email='bdemchak@ucsd.edu',
description="Cytoscape Automation API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cytoscape/py4cytoscape",
license='MIT License',
keywords=['data visualization', 'visualization', 'cytoscape',
'bioinformatics', 'graph', 'network'],
packages=setuptools.find_packages( exclude=['docker*'] ),
include_package_data=True,
setup_requires=['Cython','numpy'],
install_requires=[
'pandas',
'networkx',
'requests',
'igraph',
'colorbrewer',
'chardet',
'decorator',
'backoff',
'colour'
],
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.8',
test_suite='tests',
)
# How to build distribution: https://packaging.python.org/tutorials/packaging-projects/
# print('Packages:')
# print(setuptools.find_packages())