Skip to content

Commit ccf9be7

Browse files
authored
Merge pull request #157 from olirice/or/ppt-standard
Use generic syntax in pyproject.toml vs poetry specific
2 parents e1f78f2 + cfaee47 commit ccf9be7

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

pyproject.toml

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
[build-system]
2-
requires = ["poetry-core>=1.0.0"]
3-
build-backend = "poetry.core.masonry.api"
4-
5-
[tool.poetry]
1+
[project]
62
name = "alembic_utils"
7-
version = "0.8.7"
3+
version = "0.8.8"
84
description = "A sqlalchemy/alembic extension for migrating procedures and views"
9-
authors = ["Oliver Rice <[email protected]>"]
5+
requires-python = ">=3.9"
6+
authors = [
7+
{"name" = "Oliver Rice", "email" = "[email protected]"}
8+
]
109
license = "MIT"
1110
readme = "README.md"
1211
packages = [{include = "alembic_utils", from = "src"}]
@@ -22,19 +21,22 @@ classifiers = [
2221
"Programming Language :: Python :: 3.13",
2322
"Programming Language :: SQL",
2423
]
24+
dependencies = [
25+
"alembic>=1.9",
26+
"flupy",
27+
"parse>=1.8.4",
28+
"sqlalchemy>=1.4",
29+
"typing_extensions>=0.1.0",
30+
]
31+
32+
[build-system]
33+
requires = ["poetry-core>=2.0.0,<3.0.0"]
34+
build-backend = "poetry.core.masonry.api"
2535

2636
[tool.poetry.urls]
2737
"PyPI" = "https://pypi.org/project/alembic-utils/"
2838
"GitHub" = "https://github.com/olirice/alembic_utils"
2939

30-
[tool.poetry.dependencies]
31-
python = ">=3.9"
32-
alembic = ">=1.9"
33-
flupy = "*"
34-
parse = ">=1.8.4"
35-
sqlalchemy = ">=1.4"
36-
typing_extensions = "*"
37-
3840
[tool.poetry.group.dev.dependencies]
3941
black = "*"
4042
pylint = "*"

0 commit comments

Comments
 (0)