-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
57 lines (53 loc) · 1.08 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
52
53
54
55
56
57
[build-system]
requires = ["setuptools>=68.2.2"]
build-backend = "setuptools.build_meta"
[project]
name = "celltraj"
version = "0.1.64"
authors = [
{ name="Jeremy Copperman", email="[email protected]" },
]
description = "Toolset for single-cell trajectory modeling."
readme = "readme.rst"
requires-python = ">=3.5"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"h5py",
"matplotlib",
"pyemma",
"scipy",
"scikit-image",
"scikit-learn",
"scipy"
]
[project.urls]
Homepage = "https://github.com/jcopperm/celltraj"
Issues = "https://github.com/jcopperm/celltraj/issues"
[project.optional-dependencies]
dependencies = [
"pystackreg",
"mahotas",
"umap-learn",
"pytorch",
"pandas",
"dask",
"msmtools",
"csaps",
"pygpcca",
"btrack",
"adjustText",
"cmapfile",
"fipy",
"pot",
"nanomesh",
"ray[default]"
]
[tool.setuptools]
# ...
package-dir = {"" = "celltraj"}
# directory containing all the packages (e.g. src/mypkg1, src/mypkg2)