forked from theislab/cellrank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
94 lines (91 loc) · 3.2 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import os
from pathlib import Path
from setuptools import setup, find_packages
try:
from cellrank import __email__, __author__, __version__, __maintainer__
except ImportError:
__author__ = "Marius Lange, Michal Klein, Philipp Weiler"
__maintainer__ = "Marius Lange, Michal Klein, Philipp Weiler"
__email__ = "info@cellrank.org"
__version__ = "1.5.1"
if __name__ == "__main__":
setup(
name="cellrank",
use_scm_version=True,
setup_requires=["setuptools_scm"],
author=__author__,
author_email=__email__,
maintainer=__maintainer__,
maintainer_email=__email__,
version=__version__,
description=Path("README.rst").read_text("utf-8").split("\n")[2],
long_description=Path("README.rst").read_text("utf-8"),
url="https://github.com/theislab/cellrank",
project_urls={
"Documentation": "https://cellrank.readthedocs.io/en/stable",
"Source Code": "https://github.com/theislab/cellrank",
},
download_url="https://github.com/theislab/cellrank",
license="BSD",
install_requires=list(
map(
str.strip,
open(os.path.abspath("requirements.txt")).read().splitlines(),
)
),
extras_require=dict(
# `POT` is not requirement of `statot`
external=["Cython", "POT", "statot>=0.0.14"],
krylov=["pygpcca[slepc]"],
test=[
"pytest>=6.1.1",
"pytest-mock>=3.5.1",
"pytest-xdist>=2.1.0",
"pytest-cov",
"Pillow",
"filelock",
"python-igraph",
"leidenalg",
"jax",
"jaxlib",
],
docs=[
r
for r in map(
str.strip,
open(os.path.abspath("docs/requirements.txt")).read().splitlines(),
)
if "requirements.txt" not in r
],
dev=["pre-commit>=2.9.3", "tox>=3.23.0", "towncrier>=21.3.0"],
),
zip_safe=False,
packages=find_packages(),
python_requires=">=3.8",
platforms=["Linux", "MacOs", "Windows"],
keywords=sorted(
[
"single-cell",
"bio-informatics",
"RNA velocity",
"Markov chain",
"GPCCA",
]
),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Framework :: Jupyter",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Typing :: Typed",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
],
)