1- [tool . poetry ]
1+ [project ]
22name = " sql-compare"
33version = " 0.1.3"
44description = " Compare SQL schemas"
5- authors = [
" Charly Laurent < [email protected] > " ]
6- maintainers = [
" Mergify < [email protected] > " ]
5+ authors = [
{ name = " Charly Laurent" , email = " [email protected] " } ]
6+ maintainers = [
{ name = " Mergify" , email = " [email protected] " } ]
77readme = " README.md"
8- license = " Apache-2.0"
9- repository = " https://github.com/Mergifyio/sql-compare"
8+ license = { text = " Apache-2.0" }
109keywords = [" sql" , " database" , " schema" , " compare" , " diff" , " migration" ]
1110classifiers = [
1211 " Development Status :: 5 - Production/Stable" ,
@@ -17,7 +16,6 @@ classifiers = [
1716 " Programming Language :: Python" ,
1817 " Programming Language :: Python :: 3" ,
1918 " Programming Language :: Python :: 3 :: Only" ,
20- " Programming Language :: Python :: 3.8" ,
2119 " Programming Language :: Python :: 3.9" ,
2220 " Programming Language :: Python :: 3.10" ,
2321 " Programming Language :: Python :: 3.11" ,
@@ -29,9 +27,14 @@ classifiers = [
2927 " Topic :: Software Development :: Testing" ,
3028 " Topic :: Software Development :: Testing :: Unit" ,
3129]
30+ requires-python = " >=3.9"
31+
32+ [project .urls ]
33+ repository = " https://github.com/Mergifyio/sql-compare"
34+ "Bug Tracker" = " https://github.com/Mergifyio/sql-compare/issues"
3235
3336[tool .poetry .dependencies ]
34- python = " ^3.8 "
37+ python = " ^3.9 "
3538sqlparse = " >=0.5.0"
3639
3740[tool .poetry .group .dev .dependencies ]
@@ -42,9 +45,6 @@ poethepoet = ">=0.26.1,<0.31.0"
4245deptry = " >=0.16.1,<0.21.0"
4346semgrep = " ^1.75.0"
4447
45- [tool .poetry .urls ]
46- "Bug Tracker" = " https://github.com/Mergifyio/sql-compare/issues"
47-
4848[build-system ]
4949requires = [" poetry-core" ]
5050build-backend = " poetry.core.masonry.api"
0 commit comments