-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
32 lines (24 loc) · 900 Bytes
/
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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dicombrowser"
description = "Lightweight portable DICOM viewer with interface for images and tags"
license = {text = "GPLv3, see LICENSE.txt"}
dependencies = ["numpy", "pyqt5", "pyqtgraph", "pydicom", "pylibjpeg[all]"]
requires-python = ">3.8"
authors = [{ name = "Eric Kerfoot", email = "[email protected]" }]
dynamic = ["version", "readme"]
[project.urls]
homepage = "http://github.com/ericspod/DicomBrowser"
[project.scripts]
dicombrowser = "dicombrowser:mainargv"
[tool.setuptools.packages.find]
include = ["dicombrowser*"]
[tool.setuptools.package-data]
"dicombrowser.res" = ["*.*"]
[tool.setuptools.dynamic]
version = {attr = "dicombrowser._version.__version__"}
readme = {file = ["README.md"], content-type = "text/markdown"}
[metadata]
description-file = "README.md"