-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
68 lines (62 loc) · 1.89 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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
authors = [
{name = "pylibjpeg-rle 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 :: Rust",
"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 :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development :: Libraries",
]
description = """\
Python bindings for a fast RLE decoder/encoder, with a focus on \
use as a plugin for pylibjpeg\
"""
keywords = ["dicom pydicom python rle pylibjpeg rust"]
license = "MIT"
name = "pylibjpeg-rle"
readme = "README.md"
version = "2.1.0.dev0"
requires-python = ">=3.8"
dependencies = [
"numpy>=1.24",
]
[project.urls]
homepage = "https://github.com/pydicom/pylibjpeg-rle"
[project.entry-points."pylibjpeg.pixel_data_decoders"]
"1.2.840.10008.1.2.5" = "rle:decode_pixel_data"
[project.entry-points."pylibjpeg.pixel_data_encoders"]
"1.2.840.10008.1.2.5" = "rle:encode_pixel_data"
[tool.coverage.run]
omit = [
"libjpeg/tests/*",
]
[tool.mypy]
python_version = "3.8"
files = "rle"
exclude = ["rle/tests", "rle/benchmarks"]
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