This commit is contained in:
2025-01-20 15:38:15 +08:00
parent a0b76f1d51
commit b9cde3e874
14 changed files with 161 additions and 9 deletions

View File

@@ -0,0 +1,26 @@
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
name = "{{ cookiecutter.project_slug }}"
version = "0.1.0"
description = "{{ cookiecutter.project_short_description }}"
authors = [
{name = "{{ cookiecutter.github_username }}", email = "{{ cookiecutter.email }}"}
]
dependencies = [
"loguru~=0.7.2",
"pydantic~=2.10.5",
"pydantic-settings[toml]~=2.6.1"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0"
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-ra -q"