forked from Who8MyLunch/CharPyLS
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.46 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
[build-system]
requires = ["setuptools", "cython", "numpy"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{name = "Pierre V. Villeneuve", email = "[email protected]"},
{name = "pydicom contributors"},
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Libraries",
"Topic :: File Formats",
"Topic :: Scientific/Engineering :: Image Processing",
]
dependencies = ["numpy>=2.0"]
description = "JPEG-LS for Python via CharLS C++ Library"
keywords = ["python, jpeg"]
license = {text = "MIT"}
name = "pyjpegls"
readme = "readme.md"
requires-python = ">=3.9"
version = "1.5.1"
[project.urls]
documentation = "https://pydicom.github.io/pydicom"
download = "https://github.com/pydicom/pyjpegls/archive/master.zip"
homepage = "https://github.com/pydicom/pyjpegls"
repository = "https://github.com/pydicom/pyjpegls"
[tool.setuptools.packages.find]
include = ["jpeg_ls*"]