-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
51 lines (45 loc) · 1.33 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
45
46
47
48
49
50
51
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "gene-trajectory"
version = "1.0.4"
description = "Compute gene trajectories"
license = {file = "LICENSE"}
readme = "README.md"
authors = [
{name = "Francesco Strino", email = "[email protected]"},
{name = "Rihao Qu", email = "[email protected]"},
]
maintainers = [
{name = "Francesco Strino", email = "[email protected]"},
{name = "Rihao Qu", email = "[email protected]"},
]
keywords = ["Gene trajectory", "scRNA-seq"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
]
requires-python = ">=3.9"
dependencies = [
"igraph>=0.10",
"matplotlib>=3.6",
"numpy>=1.25",
"pandas>=1.5",
"pot>=0.8.2",
"scanpy>=1.9.3",
"scikit-misc>=0.1.3",
"scikit-learn>=0.24",
"scipy>=1.8",
"seaborn>=0.13",
"tqdm>=4.64.1",
]
[project.optional-dependencies]
dev = ["pytest", "twine"]
widgets = ["ipywidgets>8", "jupyterlab>=4"]
[project.urls]
Documentation = "https://github.com/KlugerLab/GeneTrajectory-python.git"
Repository = "https://github.com/KlugerLab/GeneTrajectory-python.git"
"Bug Tracker" = "https://github.com/KlugerLab/GeneTrajectory-python/issues"