-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
73 lines (65 loc) · 1.69 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
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
[project]
name = "alembic-postgresql-enum"
version = "1.10.0"
description = "Alembic autogenerate support for creation, alteration and deletion of enums"
authors = [
{ name = "RustyGuard" },
{ name = "AlexandrovRoman" },
]
requires-python = ">=3.7.0"
readme = "README.md"
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"SQLAlchemy>=1.4",
"alembic>=1.7",
]
[project.urls]
"Source code" = "https://github.com/Pogchamp-company/alembic-postgresql-enum"
[tool.hatch.build.targets.sdist]
include = ["alembic_postgresql_enum"]
[tool.hatch.build.targets.wheel]
include = ["alembic_postgresql_enum"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
conflicts = [
[
{ group = "matrix-1-4" },
{ group = "matrix-2-0" },
{ group = "matrix-2-0-alembic_1_18" },
],
]
[dependency-groups]
dev = [
"black==25.9.0; python_version >= '3.9'",
"psycopg2-binary>=2.9.9",
"pytest>=7.4.4",
]
matrix-1-4 = [
"alembic>=1.12.1",
"sqlalchemy~=1.4.0",
]
matrix-2-0 = [
"alembic>=1.12.1",
"sqlalchemy~=2.0.0",
]
matrix-2-0-alembic_1_18 = [
"alembic==1.18.0; python_version >= '3.10'",
"sqlalchemy~=2.0.0",
]
[tool.black]
line-length = 120