-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (49 loc) · 1.15 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
import os
from setuptools import setup, find_packages
install_requires = [
"numpy",
"pandas>=1.0",
"anndata>=0.8",
"scanpy",
"scipy",
"joblib",
"scikit-learn",
"tqdm",
"leidenalg",
"scself"
]
tests_require = [
"coverage",
"pytest"
]
version = "1.2.0"
# Description from README.md
long_description = "\n\n".join(
[open(
os.path.join(
os.path.dirname(os.path.abspath(__file__)),
"README.md"
),
"r"
).read()]
)
setup(
name="inferelator_velocity",
version=version,
description="Inferelator-Velocity Calcualtes Dynamic Latent Parameters",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/flatironinstitute/inferelator-velocity",
author="Chris Jackson",
author_email="[email protected]",
maintainer="Chris Jackson",
maintainer_email="[email protected]",
packages=find_packages(include=[
"inferelator_velocity",
"inferelator_velocity.*"
]),
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
test_suite="pytest",
)