-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
64 lines (62 loc) · 1.67 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
import setuptools
with open("README.rst", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="astir",
version="0.1.2",
author="Jinyu Hou, Sunyun Lee, Michael Geuenich, Kieran Campbell",
author_email="[email protected]",
description=" ",
long_description=long_description,
# long_description_content_type="text/markdown",
url="https://github.com/camlab-bioml/astir",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
license="GPLv2",
install_requires=[
"torch",
"pandas",
"numpy",
"nbformat",
"pyyaml",
"scikit-learn",
"argparse",
"matplotlib",
"loompy",
"tqdm",
"anndata",
"rootpath",
"nbconvert",
"nbformat",
"seaborn",
"jupyter_client",
"ipykernel",
"ipython",
"h5py",
"FlowCytometryTools",
"fastcluster",
"sphinx",
"sphinx_autodoc_typehints",
"sphinx_rtd_theme",
"autodocsumm",
"nbsphinx",
"nbsphinx_link",
"tables",
"typeguard",
"mypy",
],
project_urls={
"Documentation": "https://astir.readthedocs.io/en/latest/",
"Source Code": "https://github.com/camlab-bioml/astir",
},
include_package_data=True,
zip_safe=False,
# test_suite="nose.collector",
# test_require=["nose"],
scripts=["bin/astir"],
)