TER/pyproject.toml

29 lines
480 B
TOML
Raw Normal View History

2023-11-07 07:40:43 +00:00
[project]
name = "TER"
version = "0.0.1"
description = ""
authors = [
{name = "Etienne Zind", email = "etienne.zind@proton.me"},
]
dependencies = [
"fastapi[all]",
"pydantic-settings",
"jinja2",
"jinja2-fragments",
2023-11-08 19:59:35 +00:00
"aiosqlite",
2023-11-07 07:40:43 +00:00
]
requires-python = ">=3.11"
[project.optional-dependencies]
dev = [
"pytest",
"pytailwindcss",
]
[tool.setuptools]
packages = ["ter"]
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = ["tests"]
pythonpath = ['.']