chore: add submodules
This commit is contained in:
+23
-7
@@ -4,7 +4,9 @@ version = "0.0.0"
|
||||
description = "Add your description here"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.14"
|
||||
dependencies = []
|
||||
dependencies = [
|
||||
"unidecode>=1.4.0,<2.0.0",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
cool-domain = "cool_domain.__main__:main"
|
||||
@@ -13,22 +15,36 @@ cool-domain = "cool_domain.__main__:main"
|
||||
requires = ["uv_build>=0.11.7,<0.12"]
|
||||
build-backend = "uv_build"
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"coverage>=7.13.5,<8.0.0",
|
||||
"pytest>=9.0.3,<10.0.0",
|
||||
"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"
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"coverage>=7.13.5",
|
||||
"pytest>=9.0.3",
|
||||
"ruff>=0.15.10",
|
||||
"ty>=0.0.29",
|
||||
[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.coverage.run]
|
||||
source = ["cool_domain"]
|
||||
omit = ["cool_domain/logs.py", "cool_domain/__main__.py"]
|
||||
|
||||
Reference in New Issue
Block a user