-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 950 Bytes
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 950 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "spinal-tap"
dynamic = ["version"]
description = "SPINE Reconstruction Visualization Tool"
readme = "README.md"
authors = [
{name = "DeepLearnPhysics Collaboration", email = "drielsma@stanford.edu"}
]
maintainers = [
{name = "Francois Drielsma", email = "drielsma@stanford.edu"}
]
dependencies = [
"spine[viz]>=0.10.5",
"dash>=4.0.0",
"flask>=2.0.0",
"flask-session>=0.5.0",
"anywidget"
]
requires-python = ">=3.8"
[project.scripts]
spinal-tap = "spinal_tap.app:main"
[project.optional-dependencies]
dev = [
"black",
"isort",
"flake8"
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
spinal_tap = ["assets/*"]
[tool.setuptools.dynamic]
version = {attr = "spinal_tap.version.__version__"}
[tool.isort]
profile = "black"
line_length = 88
[tool.black]
line-length = 88