-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
78 lines (53 loc) · 2.75 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
71
72
73
74
75
76
#!/usr/bin/env python
# PySCUBA/setup.py
# Author: Gregory Giecold for the GC Yuan Lab
# Affiliation: Harvard University
# Contact: [email protected], [email protected]
from codecs import open
from os import path
from setuptools import setup
exec(open(path.join('src', 'PySCUBA', '__version__.py')).read())
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README'), encoding = 'utf-8') as f:
long_description = f.read()
setup(name = 'PySCUBA',
version = __version__,
description = "Python for Single-cell Clustering Using Bifurcation Analysis",
long_description = long_description,
url = 'https://github.com/GGiecold/PySCUBA',
download_url = 'https://github.com/GGiecold/PySCUBA',
author = 'Gregory Giecold',
author_email = '[email protected]',
maintainer = 'Gregory Giecold',
maintainer_email = '[email protected]',
license = 'MIT License',
platforms = ('Any',),
install_requires = ['matplotlib>=1.4.3', 'numpy>=1.9.0', 'Pillow>=3.2.0',
'python-igraph', 'rpy2>=2.8.1', 'scipy>=0.17.0',
'setuptools', 'sklearn', 'Wand>=0.4.3'],
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: User Interfaces', ],
packages = ['PySCUBA'],
package_dir = {'PySCUBA': 'src/PySCUBA'},
keywords = "bioinformatics biology clustering cytometry gap-statistics "
"genomics machine-learning pattern-recognition PCR principal-curve "
"qPCR RNASeq single-cell time-series unsupervised-learning",
entry_points = {
'console_scripts': ['PySCUBA = PySCUBA.__main__:main'],
}
)