@@ -4,7 +4,7 @@ requires = ["pip>=22.0.0", "setuptools", "setuptools_scm", "wheel"]
44
55[project ]
66authors = [{ name = " janbjorge" }]
7- description = " A Python library for real-time PostgreSQL event-driven cache invalidation, leveraging existing database infrastructure "
7+ description = " A Python library for real-time PostgreSQL event-driven cache invalidation. "
88dynamic = [" version" ]
99license = { text = " Apache 2.0" }
1010name = " PGCacheWatch"
@@ -13,31 +13,31 @@ requires-python = ">=3.10"
1313
1414classifiers = [
1515 " Development Status :: 4 - Beta" ,
16+ " Environment :: Other Environment" ,
17+ " Environment :: Web Environment" ,
18+ " Framework :: AsyncIO" ,
1619 " Intended Audience :: Developers" ,
1720 " License :: OSI Approved :: Apache Software License" ,
1821 " Natural Language :: English" ,
19- " Programming Language :: Python " ,
22+ " Operating System :: OS Independent " ,
2023 " Programming Language :: Python :: 3.10" ,
2124 " Programming Language :: Python :: 3.11" ,
2225 " Programming Language :: Python :: 3.12" ,
23- " Framework :: AsyncIO " , # Highlighting async capabilities
24- " Topic :: Database" , # Directly indicating its primary focus on database interaction
26+ " Programming Language :: Python " ,
27+ " Topic :: Database" ,
2528 " Topic :: Software Development :: Libraries :: Python Modules" ,
2629 " Topic :: Utilities" ,
27- " Operating System :: OS Independent" ,
28- " Environment :: Web Environment" ,
29- " Environment :: Other Environment"
3030]
3131dependencies = [
3232 " asyncpg>=0.27.0" ,
3333 " pydantic>=2.0.0" ,
3434]
3535
3636[project .urls ]
37+ Documentation = " https://github.com/janbjorge/pgcachewatch/"
3738Homepage = " https://github.com/janbjorge/pgcachewatch/"
38- Repository = " https://github.com/janbjorge/pgcachewatch/"
3939Issues = " https://github.com/janbjorge/pgcachewatch/issues"
40- Documentation = " https://github.com/janbjorge/pgcachewatch/"
40+ Repository = " https://github.com/janbjorge/pgcachewatch/"
4141
4242[project .optional-dependencies ]
4343dev = [
@@ -56,7 +56,6 @@ write_to = "src/pgcachewatch/_version.py"
5656
5757[tool .ruff ]
5858line-length = 88
59- exclude = [" version.py" ]
6059[tool .ruff .lint ]
6160select = [
6261 " C" ,
0 commit comments