-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (65 loc) · 1.41 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = [
"setuptools>=45",
"setuptools-scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "dbami"
authors = [
{name = "Jarrett Keifer", email = "[email protected]"},
]
description = "Lightweight, Python-based, framework-agnostic async PostgreSQL migration tool"
requires-python = ">=3.9"
keywords = [
"postgresql",
"sql",
"migration",
"async",
]
license = {text = "Apache License 2.0"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"asyncpg >=0.27.0",
"buildpg >=0.4",
]
dynamic = [
"version",
"readme",
]
[project.scripts]
dbami = "dbami.__main__:main"
[project.optional-dependencies]
dev = [
"black >=23.1.0",
"httpx >=0.24.0",
"isort >=5.12.0",
"mypy >=1.0.1",
"pip-tools >=6.12.3",
"pre-commit >=3.1.1",
"pre-commit-hooks >=4.4.0",
"pytest >=7.2.2",
"pytest-asyncio >=0.21.0",
"pytest-cov >=4.0.0",
"pyupgrade >=3.3.1",
"ruff >=0.0.253",
]
# sadly, we need to include this non-dependency in our
# requirements.txt to satisfy snyk, so make sure to run
# `pip-compile` with `--extra snyk`
snyk = [
"typing-extensions",
]
[tool.setuptools_scm]
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
[[tool.mypy.overrides]]
module = [
"asyncpg",
"buildpg",
]
ignore_missing_imports = true
[tool.isort]
profile = "black"