-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
70 lines (63 loc) · 1.92 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
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Setup script for py2cytoscape
To install, run:
python setup.py install
"""
from setuptools import setup, find_packages
setup(
name='py2cytoscape',
version='0.7.1',
description='Utilities to use Cytoscape and Cytoscape.js from Python',
long_description='Collection of tools for using Cytoscape and '
'cytoscape.js from Python. From v0.4.0, '
'it includes wrapper for cyREST REST API.',
author='Keiichiro Ono',
author_email='kono@ucsd.edu',
maintainer='Jorge Boucas',
maintainer_email='jorge.boucas@age.mpg.de',
url='https://github.com/idekerlab/py2cytoscape',
license='MIT License',
install_requires=[
'pandas',
'networkx',
'pydot',
'pydotplus',
'requests',
'pyparsing',
],
extras_require={
'scipy' : (
'scipy',
),
'wand' : (
'wand'
),
'parakimo' : (
'parakimo'
),
'python-igraph': (
'python-igraph'
)
},
keywords=['data visualization', 'visualization', 'cytoscape',
'bioinformatics', 'graph', 'network'],
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Visualization',
],
test_suite='tests',
packages=find_packages(),
include_package_data=True,
)