-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
53 lines (50 loc) · 1.77 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 setuptools import setup, find_packages
# import numpy as np
# from version import __version__
from pathlib import Path
with open("README.md", "r") as fh:
long_description = fh.read()
if __name__ == "__main__":
setup(
name="dynamo-release",
version="1.0.0",
python_requires=">=3.8",
install_requires=[l.strip() for l in Path("requirements.txt").read_text("utf-8").splitlines()], # 'yt>=3.5.1',
extras_require={
"spatial": ["pysal>2.0.0"],
"interactive_plots": ["plotly"],
"network": ["networkx", "nxviz", "hiveplotlib"],
"dimension_reduction": ["fitsne>=1.0.1", "dbmap>=1.1.2"],
"test": ["sympy>=1.4", "networkx"],
"bigdata_visualization": [
"datashader>=0.9.0",
"bokeh>=1.4.0",
"holoviews>=1.9.2",
],
},
packages=find_packages(),
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_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",
],
)