1
- [tool . poetry ]
1
+ [project ]
2
2
name = " sql-compare"
3
3
version = " 0.1.3"
4
4
description = " Compare SQL schemas"
5
- authors = [" Charly Laurent < charly.laurent@mergify.com> " ]
6
- maintainers = [" Mergify < engineering@mergify.com> " ]
5
+ authors = [{ name = " Charly Laurent" , email = " charly.laurent@mergify.com" } ]
6
+ maintainers = [{ name = " Mergify" , email = " engineering@mergify.com" } ]
7
7
readme = " README.md"
8
- license = " Apache-2.0"
9
- repository = " https://github.com/Mergifyio/sql-compare"
8
+ license = { text = " Apache-2.0" }
10
9
keywords = [" sql" , " database" , " schema" , " compare" , " diff" , " migration" ]
11
10
classifiers = [
12
11
" Development Status :: 5 - Production/Stable" ,
@@ -17,7 +16,6 @@ classifiers = [
17
16
" Programming Language :: Python" ,
18
17
" Programming Language :: Python :: 3" ,
19
18
" Programming Language :: Python :: 3 :: Only" ,
20
- " Programming Language :: Python :: 3.8" ,
21
19
" Programming Language :: Python :: 3.9" ,
22
20
" Programming Language :: Python :: 3.10" ,
23
21
" Programming Language :: Python :: 3.11" ,
@@ -29,10 +27,12 @@ classifiers = [
29
27
" Topic :: Software Development :: Testing" ,
30
28
" Topic :: Software Development :: Testing :: Unit" ,
31
29
]
30
+ requires-python = " >=3.9"
31
+ dependencies = [" sqlparse>=0.5.0" ]
32
32
33
- [tool . poetry . dependencies ]
34
- python = " ^3.8 "
35
- sqlparse = " >=0.5.0 "
33
+ [project . urls ]
34
+ repository = " https://github.com/Mergifyio/sql-compare "
35
+ "Bug Tracker" = " https://github.com/Mergifyio/sql-compare/issues "
36
36
37
37
[tool .poetry .group .dev .dependencies ]
38
38
ruff = " >=0.4.8,<0.10.0"
@@ -42,9 +42,6 @@ poethepoet = ">=0.26.1,<0.31.0"
42
42
deptry = " >=0.16.1,<0.21.0"
43
43
semgrep = " ^1.75.0"
44
44
45
- [tool .poetry .urls ]
46
- "Bug Tracker" = " https://github.com/Mergifyio/sql-compare/issues"
47
-
48
45
[build-system ]
49
46
requires = [" poetry-core" ]
50
47
build-backend = " poetry.core.masonry.api"
0 commit comments