-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 786 Bytes
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 786 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "photo-tools-cli"
version = "0.1.1"
description = "Python CLI tools for photography workflows"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"typer>=0.24,<1.0",
"pillow>=12.1,<13.0",
"python-dotenv>=1.2,<2.0",
]
[dependency-groups]
dev = [
"pytest>=9,<10",
"ruff>=0.15,<1.0",
"mypy>=1.19,<2.0",
"build>=1.4,<2.0",
"twine>=6.2,<7.0",
]
[project.scripts]
photo-tools = "photo_tools.cli:app"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.mypy]
python_version = "3.13"
strict = true
mypy_path = "src"
explicit_package_bases = true