-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (71 loc) · 2.15 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (71 loc) · 2.15 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
73
74
75
76
77
78
79
80
# =============================================================================
# Versioning Guide for Contributors
# =============================================================================
# This project uses hatch-vcs for automatic versioning from git tags.
#
# To release a new version:
# 1. Ensure all changes are committed
# 2. Tag the release: git tag v1.2.3
# 3. Push the tag: git push --tags
#
# Version format: vMAJOR.MINOR.PATCH (e.g., v1.0.2, v2.1.0-beta1)
# The version is written to src/Compocyte/_version.py during build.
# =============================================================================
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/Compocyte/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["src/Compocyte"]
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "Compocyte"
dynamic = ["version"]
authors = [
{ name="Thomas Walle", email="t.walle@dkfz-heidelberg.de" },
{ name="Christopher Beltz", email="christopher.beltz@dkfz-heidelberg.de" },
]
description = "Compocyte automates cell type annotation for scRNAseq data using a composite of hierarchically arranged classifiers."
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"catboost==1.2.10",
"balanced-loss==0.1.1",
"anndata==0.12.11",
"scanpy==1.12.1",
"SEACells==0.3.3",
"cytopus==1.3.4",
"scikit-learn==1.8.0",
"torch==2.11.0",
"pytest==9.0.3",
"nbmake==1.5.5",
"dask==2026.3.0",
"pooch==1.9.0",
"leidenalg==0.11.0",
"pygraphviz==1.14",
]
[project.urls]
"Homepage" = "https://github.com/WALL-E-Lab/Compocyte"
"Bug Tracker" = "https://github.com/WALL-E-Lab/Compocyte/issues"
[project.optional-dependencies]
dev = []
docs = [
"sphinx>=7.0",
"furo>=2024.01.29",
"sphinx-design>=0.5.0",
"nbsphinx>=0.9.0",
"myst-parser>=2.0.0",
"ipython>=8.0.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--tb=short -q"