-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (65 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
74 lines (65 loc) · 1.66 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "negclone"
version = "0.2.0"
description = "Extract grain/color fingerprints from film scans and generate Darktable/Lightroom presets"
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
authors = [
{ name = "Desert Paul" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Graphics",
"Topic :: Artistic Software",
]
keywords = [
"film", "photography", "presets", "darktable", "lightroom",
"grain", "fingerprint", "analog", "color-grading",
]
dependencies = [
"typer>=0.15.0",
"rich>=13.9.0",
"Pillow>=11.0.0",
"numpy>=2.1.0",
"scipy>=1.14.0",
"flickrapi>=2.4.0",
"httpx>=0.28.0",
"pydantic>=2.10.0",
]
[project.scripts]
negclone = "negclone.cli:app"
[project.urls]
Homepage = "https://github.com/pfrederiksen/negclone"
Repository = "https://github.com/pfrederiksen/negclone"
Issues = "https://github.com/pfrederiksen/negclone/issues"
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"pytest-cov>=6.0.0",
"respx>=0.22.0",
"ruff>=0.8.0",
"mypy>=1.13.0",
]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = [
"E", "F", "W", "I", "N", "UP", "B", "A", "SIM", "TCH",
]
[tool.mypy]
python_version = "3.12"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov=negclone --cov-report=term-missing"