forked from fondat/fondat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (46 loc) · 1.14 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
46
47
48
49
50
51
52
[build-system]
requires = ["poetry>=1.6"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 96
target-version = ['py311']
[tool.poetry]
name = "fondat"
version = "4.2.0"
description = "A foundation for resource-oriented backend applications."
readme = "README.md"
authors = ["fondat authors"]
homepage = "https://github.com/fondat/fondat/"
documentation = "https://github.com/fondat/fondat/tree/main/docs"
license = "MIT"
keywords = ["asgi", "foundation", "resource", "openapi"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
packages = [
{ include = "fondat" }
]
[tool.poetry.dependencies]
python = "^3.11"
aiosqlite = "^0.19"
iso8601 = "^2.0"
multidict = "^6.0"
wrapt = "^1.16"
[tool.poetry.dev-dependencies]
black = "^23.11"
isort = "^5.12"
pre-commit = "^3.4"
pytest = "^7.4"
pytest-asyncio = "^0.21"
pytest-cov = "^4.1"
[tool.isort]
profile = "black"
lexicographical = true
lines_after_imports = 2
lines_between_types = 1
line_length = 96
no_sections = true
[tool.pytest.ini_options]
asyncio_mode = "auto"