-
-
Notifications
You must be signed in to change notification settings - Fork 231
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
65 lines (58 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[project]
name = "fastapi_template"
version = "0.0.0"
description = "Feature-rich robust FastAPI template"
authors = [{ name = "Pavel Kirilin", email = "win10@list.ru" }]
requires-python = ">=3.9,<4"
readme = "README.md"
keywords = [
"FastAPI",
"Cookiecutter",
"Template",
]
dependencies = [
"cookiecutter>=1.7.3,<2",
"pre-commit>=2.14.0,<3",
"termcolor>=1.1.0,<2",
"pydantic>=1.10",
"simple-term-menu>=1.5.2,<2",
"click>=8.1.3,<9",
"prompt-toolkit>=3.0.36,<4",
]
[project.urls]
Homepage = "https://github.com/s3rius/FastAPI-template"
Repository = "https://github.com/s3rius/FastAPI-template"
[project.scripts]
fastapi_template = "fastapi_template.__main__:main"
[dependency-groups]
dev = [
"pytest>=7,<8",
"pyyaml>=6.0.1,<7",
"pytest-env>=1,<2",
"Faker>=8.14.0,<9",
"pytest-xdist[psutil]>=3,<4",
"requests>=2.28.1,<3",
"pytest-retry>=1.6.3,<2",
]
[tool.hatch.build.targets.sdist]
include = ["fastapi_template"]
[tool.hatch.build.targets.wheel]
include = ["fastapi_template"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
minversion = "6.0"
markers = [
"pg: tests for postgresql.",
"mysql: tests for mysql.",
"sqlite: tests for sqlite3.",
]
env = [
"POETRY_VIRTUALENVS_IN_PROJECT=True",
"PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring",
]
testpaths = ["fastapi_template/tests"]
retries = 3
retry_delay = 2
cumulative_timing = true