-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (40 loc) · 1.17 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
[tool.poetry]
name = "pgmob"
version = "0.1.3a0"
description = "Postgres Managed Objects - a Postgres database management interface"
authors = ["Kirill Kravtsov <[email protected]>"]
packages = [
{ include = "pgmob", from = "src" },
]
include = ["src/pgmob/scripts/*"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/dataplat/pgmob/"
repository = "https://github.com/dataplat/pgmob"
documentation = "https://pgmob.readthedocs.io/en/latest/"
keywords = ["postgres", "sql", "backup", "restore"]
[tool.poetry.dependencies]
python = ">=3.9,<4"
psycopg2-binary = {version = ">=2.8.5,<3", optional = true}
psycopg2 = {version = ">=2.8.5,<3", optional = true}
packaging = ">=21.3"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
pytest-cov = "^3.0.0"
pytest-mock = "^3.7.0"
black = "^22.3.0"
docker = "^6.0.0"
mypy = "^0.971"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
psycopg2-binary = ["psycopg2-binary"]
psycopg2 = ["psycopg2"]
[tool.black]
line-length = 110