Files
json-to-metadata/pyproject.toml
2026-02-10 16:36:41 +01:00

55 lines
1.2 KiB
TOML

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "json-to-metadata"
version = "0.1.0"
description = "Script de gestion des métadonnées EXIF pour photos argentiques"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT-0"}
authors = [
{name = "Antoine"}
]
keywords = ["exif", "metadata", "photography", "film"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Graphics",
]
[project.scripts]
json-to-metadata = "json_to_metadata.cli:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"flake8>=6.0",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["json_to_metadata*"]
[tool.flake8]
max-line-length = 100
exclude = [
".git",
"__pycache__",
"venv",
".venv",
"build",
"dist",
]
ignore = ["E501", "W503"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]