-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.11 KB
/
pyproject.toml
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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.4,<4"]
[project]
name = "GraphVelo"
version = "0.1.5"
description = "Inferring manifold-constrained velocity and transforming vectors across representations"
authors = [{ name = "Yuhao Chen", email = "[email protected]" }]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Bio-Informatics",]
requires-python = ">=3.8"
[tool.flit.module]
name = "graphvelo"
dependencies = [
"tqdm",
"numpy==1.24.3",
"scipy==1.10.1",
"pygam>=0.9.1",
"joblib",
"pandas==2.0.3",
"scikit-learn==1.3.2",
"anndata",
"scanpy==1.9.8",
"dynamo-release",
"matplotlib==3.7.5",
"seaborn==0.13.2",
]
[project.urls]
homepage = "https://github.com/xing-lab-pitt/GraphVelo"
documentation = "https://github.com/xing-lab-pitt/GraphVelo"
repository = "https://github.com/xing-lab-pitt/GraphVelo"
[project.scripts]
poetry = "infer_pyproject.cli:main"