-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.7 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
[build-system]
requires = [
"setuptools>=45.0"
]
build-backend = "setuptools.build_meta"
[project]
authors = [
{name = "mrbean-bremen and contributors", email = "[email protected]"}
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
dependencies = ["pydicom", "lxml"]
description = "Python DICOM validator using input from DICOM specs in docbook format"
keywords = ["dicom, python"]
license = {text = "MIT"}
name = "dicom-validator"
readme = "README.md"
requires-python = ">=3.8"
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"pyfakefs>=5.0.0",
"pytest",
]
[project.urls]
documentation = "https://github.com/pydicom/dicom-validator#readme"
download = "https://github.com/pydicom/dicom-validator/archive/main.zip"
homepage = "https://github.com/pydicom/dicom-validator"
repository = "https://github.com/pydicom/dicom-validator"
[project.scripts]
validate_iods = "dicom_validator.validate_iods:main"
dump_dcm_info = "dicom_validator.dump_dcm_info:main"
[tool.setuptools.dynamic]
version = {attr = "dicom_validator.__version__"}