-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (63 loc) · 2.25 KB
/
pyproject.toml
File metadata and controls
72 lines (63 loc) · 2.25 KB
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
# ────────────── build backend ──────────────
[build-system]
requires = [
"setuptools>=80", # modern PEP 621 support
# "wheel",
"setuptools-scm>=8" # derive version from Git tags
]
build-backend = "setuptools.build_meta"
# ────────────── project metadata (PEP 621) ──────────────
[project]
name = "pySingleCellNet"
dynamic = ["version"]
description = "Single-cell classification and analysis, optimized for embryonic and fetal development"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
keywords = ["single cell", "cell typing", "classification", "embryo", "embryoid", "gastruloid"]
authors = [
{name = "Patrick Cahan", email = "patrick.cahan@gmail.com"},
{name = "Yuqi Tan", email = "ytan19@jhmi.edu"}
]
dependencies = [
"pandas",
"numpy",
"scikit-learn",
"scikit-misc",
"scanpy",
"statsmodels",
"scipy",
"matplotlib",
"seaborn",
"umap-learn",
"mygene",
"palettable",
"gseapy",
"alive_progress",
"python-igraph",
"marsilea"
]
[project.optional-dependencies]
dev = ["pytest>=7.0"]
[project.urls]
Documentation = "https://cahanlab-pysinglecellnet.readthedocs-hosted.com/"
Source = "https://github.com/CahanLab/PySingleCellNet"
Repository = "https://github.com/CahanLab/PySingleCellNet.git"
Issues = "https://github.com/CahanLab/PySingleCellNet/issues"
Changelog = "https://github.com/CahanLab/PySingleCellNet/tree/master/docs/CHANGELOG.md"
# ────────────── setuptools-specific settings ──────────────
#[tool.setuptools]
#package-dir = {"" = "src"}
#packages = ["pySingleCellNet"]
# Alternative: use the finder (uncomment if you prefer)
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["docs"]
# ────────────── setuptools-scm tweaks (optional) ──────────────
[tool.setuptools_scm]
version_scheme = "only-version"
local_scheme = "no-local-version"
write_to = "src/pySingleCellNet/_version.py"
# ────────────── pytest ──────────────
[tool.pytest.ini_options]
testpaths = ["tests"]