-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.33 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 = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dicom4ortho"
version = "0.4.5"
description = "A DICOM Implementation for Orthodontic Images"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT License"}
authors = [
{name = "Toni Magni", email = "amagni@open-ortho.org"},
]
keywords = ["DICOM", "VL", "Visible Light Photography", "Orthodontics"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Image Processing",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
]
dependencies = [
"argparse",
"pydicom",
"pynetdicom",
"pillow",
"prettytable",
"numpy",
]
[project.urls]
homepage = 'https://github.com/open-ortho/dicom4ortho'
[project.scripts]
dicom4ortho = "dicom4ortho.__main__:main"
d4o_generate = "dicom4ortho.__main__:generate_uid"
fhir2dicom4ortho = "fhir2dicom4ortho.entry_points:fhir_api"
[tool.setuptools.package-data]
"*" = ["LICENSE"]
"dicom4ortho" = ["resources/image_types.csv", "resources/codes.csv", "resources/views.csv"]
[tool.setuptools.packages.find]
include = ["dicom4ortho*", "fhir2dicom4ortho*"]