-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
69 lines (63 loc) · 1.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
import os
import sys
from setuptools import setup, find_packages
install_requires = [
"Cython>=0.29.17",
"quadprog>=0.1.6",
"numpy>=1.17.1",
"scikit-learn>=0.22.2.post1",
"scipy>=1.3.1",
"pandas>=0.23.4",
"dill>=0.3.1.1",
"h5py>=2.10.0",
"anndata>=0.7.1",
"matplotlib",
"pygraphviz"
]
if sys.version_info[:2] < (3, 6):
raise RuntimeError("Python version >=3.6 required.")
with open("README.rst", "r", encoding="utf-8") as fh:
readme = fh.read()
setup(
name="cello_classify",
version="2.1.1",
description="CellO",
author="Matthew N. Bernstein",
author_email="[email protected]",
packages=[
"cello",
"cello.onto_lib_py3",
"cello.models",
"cello.graph_lib"
],
license="MIT License",
install_requires=install_requires,
long_description=readme,
include_package_data=True,
zip_safe=True,
url="https://github.com/deweylab/CellO",
entry_points={
'console_scripts': [
'cello_predict = cello.cello_predict:main',
'cello_train_model = cello.cello_train_model:main',
'cello_quantify_sample = cello.cello_quantify_sample:main'
]
},
keywords=[
"scRNA-seq",
"cell-type",
"cell-ontology",
"gene-expression",
"computational-biology",
],
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
)