-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
71 lines (60 loc) · 1.34 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pcg-skel"
dynamic = ["version"]
description = "Skeletonization using the pychunkedgraph"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{ name = "Casey Schneider-mizell", email = "[email protected]" },
]
maintainers = [
{ name = "Casey Schneider-mizell", email = "[email protected]" },
]
requires-python = ">=3.9"
dependencies = [
"caveclient>=6.4.1",
"cloud-volume>=3.6.0",
"fastremap",
"meshparty>=1.12.0",
"numpy",
"orjson",
"pandas",
"scipy",
"sqlitedict",
"trimesh",
]
[project.urls]
Repository = "https://github.com/AllenInstitute/pcg_skel"
[tool.hatch.version]
path = "pcg_skel/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/pcg_skel",
]
[tool.hatch.envs.default]
python = "3.12"
installer = "uv"
[tool.hatch.envs.test]
dependencies = [
"pytest",
"pytest-mock",
"pytest-cov",
"responses",
]
[[tool.hatch.envs.test.matrix]]
python = ["3.9", "3.10", "3.11", "3.12"]
[tool.hatch.envs.test.scripts]
run_tests = "python -m pytest -v tests"
[tool.hatch.envs.docs]
python = "3.11"
dependencies = [
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-glightbox"
]
[tool.hatch.envs.docs.scripts]
docs_test = "mkdocs serve -v"
build = "mkdocs build"