-
Notifications
You must be signed in to change notification settings - Fork 59
/
setup.py
executable file
·52 lines (45 loc) · 1.56 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
import os
from pathlib import Path
from setuptools import find_packages, setup
# from version import __version__
def read_requirements(path):
with open(path, "r") as f:
return [line.strip() for line in f if not line.isspace()]
with open("README.md", "r") as fh:
long_description = fh.read()
if __name__ == "__main__":
setup(
name="dynamo-release",
version="v1.4.2-rc1",
python_requires=">=3.7",
install_requires=read_requirements("requirements.txt"),
extras_require={
"docs": read_requirements(os.path.join("docs", "requirements.txt")),
},
packages=find_packages(exclude=("tests", "docs")),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
# include_dirs=[np.get_include()],
author="Xiaojie Qiu, Yan Zhang, Ke Ni",
author_team="dynamo team",
author_email="[email protected]",
description="Mapping Vector Field of Single Cells",
long_description=long_description,
long_description_content_type="text/markdown",
license="BSD",
url="https://github.com/aristoteleo/dynamo-release",
download_url=f"https://github.com/aristoteleo/dynamo-release",
keywords=[
"VectorField",
"singlecell",
"velocity",
"scNT-seq",
"sci-fate",
"NASC-seq",
"scSLAMseq",
"potential",
],
)