-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
72 lines (64 loc) · 1.57 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
[project]
name = "swctools"
version = "0.1.0"
description = "Toolbox for SWC parsing, modeling, analysis, geometry, and 3D visualization (NetworkX, NumPy, Plotly)."
readme = "README.md"
requires-python = ">=3.12"
license = { file = "LICENSE" }
authors = [
{ name = "Jordan M. R. Fox", email = "jordanmrfox@gmail.com" }
]
keywords = [
"SWC",
"neuronal morphology",
"parsing",
"modeling",
"analysis",
"geometry",
"visualization",
"plotly",
"networkx",
"3D",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"networkx>=3.5",
"numpy>=2.3.3",
"plotly>=6.3.0",
]
[project.urls]
Homepage = "https://github.com/jmrfox/swctools"
"Bug Tracker" = "https://github.com/jmrfox/swctools/issues"
[tool.pytest.ini_options]
pythonpath = ["."]
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"nbformat>=5.10.4",
"nbconvert>=7.16.4",
"pytest>=8.4.2",
"ipykernel>=6.29.0",
"sphinx>=8.1.3",
"pydata-sphinx-theme>=0.16.1",
"sphinx-autodoc-typehints>=3.2.1",
"matplotlib>=3.10.8",
]
[tool.hatch.build]
include = [
"swctools/**",
"README.md",
"LICENSE",
]
[tool.hatch.build.targets.wheel]
packages = ["swctools"]