-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.21 KB
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
[tool.poetry]
name = "pgbelt"
version = "0.18.2"
description = "A CLI tool used to manage Postgres data migrations from beginning to end, for a single database or a fleet, leveraging pglogical replication."
authors = ["Varjitt Jeeva <varjitt.jeeva@autodesk.com>"]
readme = "README.md"
packages = [
{ include = "pgbelt", from = "./" },
]
[tool.poetry.dependencies]
python = ">=3.10,<3.15"
aiofiles = ">=0.8,<24.2"
asyncpg = ">=0.27,<0.32"
pydantic = ">=2.0,<3.0"
tabulate = ">=0.9,<0.11"
typer = ">=0.9,<0.25"
[tool.poetry.dev-dependencies]
black = "~26.3.1"
pre-commit = "~4.5.1"
flake8 = "^7.3.0"
pytest-cov = "~7.1.0"
pytest = "^9.0.2"
coverage = {extras = ["toml"], version = "^7.13"}
safety = "^3.6.1"
mypy = "^1.17"
xdoctest = {extras = ["colors"], version = "^1.3.2"}
flake8-bandit = "~4.1.1"
flake8-bugbear = ">=21.9.2"
flake8-docstrings = "^1.6.0"
flake8-rst-docstrings = "^0.4.0"
pep8-naming = "^0.15.1"
darglint = "^1.8.1"
reorder-python-imports = "^3.15.0"
pre-commit-hooks = "^6.0.0"
Pygments = "^2.19.2"
pyupgrade = "^3.20.0"
pylint = "^4.0.5"
pytest-asyncio = "~1.3.0"
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
belt = "pgbelt.main:app"