27 lines
578 B
TOML
27 lines
578 B
TOML
[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"
|