forked from theislab/scvelo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (48 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
from pathlib import Path
from setuptools import find_packages, setup
def read_requirements(req_path):
"""Read abstract requirements."""
requirements = Path(req_path).read_text("utf-8").splitlines()
return [r.strip() for r in requirements if not r.startswith("-")]
setup(
name="scvelo",
use_scm_version=True,
setup_requires=["setuptools_scm"],
python_requires=">=3.6",
install_requires=read_requirements("requirements.txt"),
extras_require=dict(
louvain=["python-igraph", "louvain"],
hnswlib=["pybind11", "hnswlib"],
dev=read_requirements("requirements-dev.txt"),
docs=read_requirements("docs/requirements.txt"),
),
packages=find_packages(),
author="Volker Bergen",
author_email="[email protected]",
description="RNA velocity generalized through dynamical modeling",
long_description=Path("pypi.rst").read_text("utf-8"),
license="BSD",
url="https://github.com/theislab/scvelo",
download_url="https://github.com/theislab/scvelo",
keywords=[
"RNA",
"velocity",
"single cell",
"transcriptomics",
"stochastic",
"dynamical",
],
classifiers=[
"License :: OSI Approved :: BSD License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
],
)