-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.58 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
53
54
55
[tool.poetry]
name = "psycopg-toolkit"
version = "0.1.7"
description = "A Python PostgreSQL database utility with connection pooling"
authors = ["Ove Ranheim <[email protected]>"]
readme = "docs/readme.md"
packages = [{ include = "psycopg_toolkit", from = "src" }]
license = "MIT"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
homepage = "https://github.com/descoped/psycopg-toolkit"
repository = "https://github.com/descoped/psycopg-toolkit"
documentation = "https://github.com/descoped/psycopg-toolkit/tree/master/docs"
keywords = ["postgresql", "database", "async", "pool", "psycopg"]
[tool.poetry.dependencies]
python = "^3.11"
psycopg = "^3.2.3"
psycopg-pool = "^3.2.4"
tenacity = "^9.0.0"
pydantic = "^2.10.5"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.0"
pytest-asyncio = "^0.25.2"
testcontainers = {extras = ["postgresql"], version = "^4.9.1"}
[tool.poetry.group.dev.dependencies]
flake8 = "^7.1.0"
restructuredtext-lint = "^1.4.0"
pygments = "^2.19.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
markers = [
"asyncio: mark test as async",
]
[tool.poetry.scripts]
make-readme = "scripts.make_readme:main"