-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
50 lines (44 loc) · 1.12 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
[build-system]
requires = ["poetry>=1.1"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 96
target-version = ['py310']
[tool.poetry]
name = "fondat-postgresql"
version = "4.1.0"
description = "Fondat module for PostgreSQL."
readme = "README.md"
authors = ["fondat-postgresql authors"]
homepage = "https://github.com/fondat/fondat-postgresql/"
documentation = "https://github.com/fondat/fondat-postgresql/wiki"
license = "MIT"
keywords = ["asgi", "framework", "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.10"
fondat = "^4.1.4"
asyncpg = "^0.26"
[tool.poetry.dev-dependencies]
black = "^22.10"
isort = "^5.10"
pre-commit = "^2.20"
pytest = "^7.1"
pytest-asyncio = "^0.19"
pytest-cov = "^3.0"
[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"