-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 933 Bytes
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 933 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
[project]
name = "VITools"
version = "0.4.1"
authors = [
{name="Brandon Nelson", email="[email protected]"},
]
description = "VITools: tools for conducting virtual imaging trials"
readme = "README.rst"
requires-python = ">=3.8"
dependencies = [
"pandas",
"pytest",
"pydicom",
"scipy",
"gecatsim @ git+https://github.com/xcist/main.git"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
Homepage = "https://github.com/brandonjnelsonFDA/VIT-Tools"
Issues = "https://github.com/brandonjnelsonFDA/VIT-Tools/issues"
[project.scripts]
generate = "VITools.study:vit_cli"
vit_clean = "VITools.study:vit_clean_cli"
[project.entry-points."VITools"] # Must match PROJECT_NAME
examples = "VITools.examples"