-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
33 lines (24 loc) · 880 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
33
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
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.9"
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_scm]
[tool.setuptools.packages.find]
include = ["dicombrowser*"]
[tool.setuptools.package-data]
"dicombrowser.res" = ["*.*"]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[metadata]
description-file = "README.md"