-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (43 loc) · 971 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[project]
name = "jpegzip"
version = "1.0.0"
authors = [
{ name="Adrian Mincu", email="[email protected]" },
]
# TODO: project description
description = ""
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
'numpy~=2.1',
'scipy~=1.14',
'matplotlib~=3.9',
'pooch~=1.8',
'scikit-image~=0.25',
'opencv-python~=4.10'
]
[project.optional-dependencies]
dev = [
'pytest~=8.3',
'black~=24.10',
'isort~=5.13',
]
[tool.pytest.ini_options]
minversion = "8.3"
addopts = "-ra"
testpaths = [
"tests",
"integration",
]
[project.urls]
Homepage = "https://github.com/skpha13/JPEG-Compression"
Issues = "https://github.com/skpha13/JPEG-Compression/issues"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = { find = { where = ["jpegzip"] } }