forked from s3rius/FastAPI-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 1.1 KB
/
pyproject.toml
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
[tool.poetry]
name = "fastapi_template"
version = "3.3.9"
description = "Feature-rich robust FastAPI template"
authors = ["Pavel Kirilin <win10@list.ru>"]
packages = [{ include = "fastapi_template" }]
repository = "https://github.com/s3rius/FastAPI-template"
homepage = "https://github.com/s3rius/FastAPI-template"
readme = "README.md"
keywords = ["FastAPI", "Cookiecutter", "Template"]
[tool.poetry.dependencies]
python = "^3.8"
cookiecutter = "^1.7.3"
pre-commit = "^2.14.0"
termcolor = "^1.1.0"
pydantic = "^1.8.2"
prompt-toolkit = "^3.0.19"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-env = "^0.6.2"
Faker = "^8.14.0"
pytest-xdist = {version = "^2.5.0", extras = ["psutil"]}
requests = "^2.28.1"
[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"
]
testpaths = ["fastapi_template/tests"]
[tool.poetry.scripts]
fastapi_template = "fastapi_template.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"