1- [tool . poetry ]
1+ [project ]
22name = " sql-compare"
33version = " 0.1.3"
44description = " 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" } ]
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,10 +27,12 @@ classifiers = [
2927 " Topic :: Software Development :: Testing" ,
3028 " Topic :: Software Development :: Testing :: Unit" ,
3129]
30+ requires-python = " >=3.9"
31+ dependencies = [" sqlparse>=0.5.0" ]
3232
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 "
3636
3737[tool .poetry .group .dev .dependencies ]
3838ruff = " >=0.4.8,<0.10.0"
@@ -42,9 +42,6 @@ poethepoet = ">=0.26.1,<0.31.0"
4242deptry = " >=0.16.1,<0.21.0"
4343semgrep = " ^1.75.0"
4444
45- [tool .poetry .urls ]
46- "Bug Tracker" = " https://github.com/Mergifyio/sql-compare/issues"
47-
4845[build-system ]
4946requires = [" poetry-core" ]
5047build-backend = " poetry.core.masonry.api"
0 commit comments