-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.15 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyfroc"
dynamic = ["version"]
authors = [{ name = "Satoshi Funayama", email = "[email protected]" }]
description = "python framework for FROC/AFROC analysis"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"bidict>=0.23.1",
"matching>=1.4.3",
"MiniballCpp>=0.2.3",
"numpy<2.0.0,>=1.2.0",
"openpyxl>=3.1.4",
"pandas>=2.2.2",
"pydicom>=2.4.4",
"pynrrd>=1.0.0",
"pytypedstream>=0.1.0",
"scikit-image>=0.23.2",
"tcia_utils",
"tqdm>=4.66.4",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.scripts]
pyfroc = "pyfroc:main"
[project.urls]
Homepage = "https://github.com/akchan/pyfroc"
Issues = "https://github.com/akchan/pyfroc/issues"
[tool.hatch.envs.default]
path = "hatch_env"
[tool.hatch.envs.dev]
dependencies = ["pytest", "jupyter", "ipython", "ipykernel", "matplotlib"]
post-install-commands = ["ipython kernel install --user --name=pyfroc_dev"]
[tool.hatch.version]
path = "src/pyfroc/__about__.py"