-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (48 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
59 lines (48 loc) · 1.08 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "anyblok-fastapi"
version = "0.2.0"
description = "AnyBlok with FastAPI"
readme = "README.rst"
license = "Apache-2.0"
authors = [
{ name = "Pierre Verkest", email = "pierre@verkest.fr" },
]
url = "https://github.com/AnyBlok/AnyBlok_FastAPI"
dependencies = [
"anyblok",
"fastapi",
"gunicorn",
"sqlalchemy",
"uvicorn[standard]",
]
[project.scripts]
anyblok_uvicorn="anyblok_fastapi.scripts:asgi"
gunicorn_anyblok_uvicorn="anyblok_fastapi.scripts:gunicorn_asgi"
[project.entry-points."anyblok.init"]
anyblok_fastapi_config="anyblok_fastapi.init:anyblok_init_config"
[project.entry-points.test_bloks]
test-fastapi-blok1="anyblok_fastapi.test_bloks.test_blok1:TestBlok"
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"httpx>=0.28.1",
"pytest-asyncio",
"WebTest",
"sphinx",
"sphinxcontrib-httpdomain",
"psycopg[binary]",
]
[tool.coverage.run]
branch = true
omit = [
"__init__.py",
"*/tests/*",
"conftest.py",
"config.py",
]
[tool.coverage.report]
show_missing = true