Files
cool-domain/pyproject.toml
T
klemek 10daddb54c
Python Lint CI / ruff (push) Successful in 13m4s
Python Lint CI / ruff-format-check (push) Successful in 13m9s
Python Lint CI / ty (push) Successful in 12m32s
chore: 1.4.2
2026-06-16 11:31:53 +02:00

48 lines
806 B
TOML

[project]
name = "cool-domain"
version = "1.4.2"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"unidecode>=1.4.0,<2.0.0",
]
[project.scripts]
cool-domain = "cool_domain.__main__:main"
[build-system]
requires = ["uv_build>=0.11.7,<0.12"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"ruff>=0.15.12,<0.16.0",
"ty>=0.0.34,<0.0.35",
]
[tool.uv]
add-bounds = "major"
[tool.uv.build-backend]
module-root = ""
module-name = "cool_domain"
[tool.ruff]
exclude = [
".git",
".venv",
"english",
"french",
]
[tool.ruff.lint]
select = ["ALL"]
ignore = ["D", "E501", "ANN401", "BLE001", "COM812", "S101", "PT"]
[tool.ty.src]
include = ["cool_domain", "tests"]
[tool.ty.environment]
python = "./.venv/bin/python3"