forked from wwang-chcn/ONTraC
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
87 lines (80 loc) · 2.48 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ONTraC"
authors = [
{name = "Wen Wang", email = "[email protected]"},
{name = "Shiwei Zheng", email = "[email protected]"},
{name = "Crystal Shin", email = "[email protected]"},
{name = "Joselyn C. Chávez-Fuentes", email = "[email protected]"},
{name = "Guo-Cheng Yuan", email = "[email protected]"},
]
description = "A niche-centered, machine learning method for constructing spatially continuous trajectories"
readme = "README.md"
requires-python = ">=3.10,<3.13"
keywords = ["graph neural network", "pytorch", "pytorch geometric", "trajectory inference", "spatial omics"]
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"pyyaml==6.0.1",
"pandas==2.2.1",
"torch==2.2.1",
"torch-geometric==2.5.0",
"session-info"
]
dynamic = ["version"]
[project.optional-dependencies]
analysis = [
"matplotlib<3.9",
"seaborn"]
test = [
"matplotlib<3.9",
"seaborn",
"pytest",
"black",
"flake8",
"isort",
"mypy",]
dev = [
"matplotlib<3.9",
"seaborn",
"pytest",
"black",
"flake8",
"isort",
"mypy",
"pre-commit",
"setuptools",
"twine",
"build"]
[project.scripts]
ONTraC = "ONTraC.bin.ONTraC:main"
ONTraC_NN = "ONTraC.bin.ONTraC_NN:main"
ONTraC_GNN = "ONTraC.bin.ONTraC_GNN:main"
ONTraC_GT = "ONTraC.bin.ONTraC_GT:main"
ONTraC_NT = "ONTraC.bin.ONTraC_NT:main"
ONTraC_analysis = "ONTraC.bin.ONTraC_analysis:main"
createDataSet = "ONTraC.bin.createDataSet:main"
NicheTrajectory = "ONTraC.bin.NicheTrajectory:main"
ONTraC_GP = "ONTraC.bin.ONTraC_GP:main"
[project.urls]
Homepage = "https://github.com/gyuanlab/ONTraC"
"Repository" = "https://github.com/gyuanlab/ONTraC"
"Issue Tracker" = "https://github.com/gyuanlab/ONTraC/issues"
[tool.setuptools.dynamic]
version = {attr = "ONTraC.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"ONTraC.external" = ["STdeconvolve.R"]