-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
79 lines (72 loc) · 1.92 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
authors = [
{name = "pylibjpeg contributors"}
]
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"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",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development :: Libraries",
]
dependencies = ["numpy"]
description = """\
A Python framework for decoding JPEG and decoding/encoding DICOM \
RLE data, with a focus on supporting pydicom\
"""
keywords = ["dicom pydicom python imaging jpg jpeg jpg-ls jpeg-ls jpeg2k jpeg2000 rle"]
license = {text = "MIT"}
name = "pylibjpeg"
readme = "README.md"
requires-python = ">=3.8"
version = "2.0.1"
[project.optional-dependencies]
dev = [
"black>=23.12",
"mypy>=1.8",
"pytest",
"pytest-cov",
]
rle = [
"pylibjpeg-rle"
]
openjpeg = [
"pylibjpeg-openjpeg"
]
libjpeg = [
"pylibjpeg-libjpeg"
]
all = [
"pylibjpeg-rle",
"pylibjpeg-openjpeg",
"pylibjpeg-libjpeg",
]
[project.urls]
download = "https://github.com/pydicom/pylibjpeg/archive/main.zip"
homepage = "https://github.com/pydicom/pylibjpeg"
repository = "https://github.com/pydicom/pylibjpeg"
[tool.mypy]
python_version = "3.8"
files = "pylibjpeg"
exclude = ["pylibjpeg/tests", "pylibjpeg/tools/tests"]
show_error_codes = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
warn_unreachable = false
ignore_missing_imports = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true