-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
35 lines (31 loc) · 874 Bytes
/
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
[tool.black]
line-length=79
skip-magic-trailing-comma=true
[tool.poetry]
name = "apgorm"
version = "0.0.0"
description = "A fully type-checked asynchronous ORM wrapped around asyncpg."
authors = ["Circuit"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/TrigonDev/apgorm"
repository = "https://github.com/TrigonDev/apgorm"
documentation = "https://github.com/TrigonDev/apgorm/wiki"
keywords = ["postgres", "postgresql", "asyncpg", "asyncio", "orm"]
[tool.poetry.dependencies]
python = "^3.8"
asyncpg = ">=0.25,<0.29"
pydantic = ">=1.9,<3.0"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
isort = "^5.12.0"
mypy = "^1.3.0"
flake8 = "^5.0.4"
pytest = "^7.3.2"
pytest-asyncio = "^0.21.0"
pytest-mock = "^3.11.1"
pytest-cov = "^4.1.0"
nox = "^2023.4.22"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"