@@ -4,7 +4,7 @@ requires = ["pip>=22.0.0", "setuptools", "setuptools_scm", "wheel"]
4
4
5
5
[project ]
6
6
authors = [{ 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. "
8
8
dynamic = [" version" ]
9
9
license = { text = " Apache 2.0" }
10
10
name = " PGCacheWatch"
@@ -13,31 +13,31 @@ requires-python = ">=3.10"
13
13
14
14
classifiers = [
15
15
" Development Status :: 4 - Beta" ,
16
+ " Environment :: Other Environment" ,
17
+ " Environment :: Web Environment" ,
18
+ " Framework :: AsyncIO" ,
16
19
" Intended Audience :: Developers" ,
17
20
" License :: OSI Approved :: Apache Software License" ,
18
21
" Natural Language :: English" ,
19
- " Programming Language :: Python " ,
22
+ " Operating System :: OS Independent " ,
20
23
" Programming Language :: Python :: 3.10" ,
21
24
" Programming Language :: Python :: 3.11" ,
22
25
" 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" ,
25
28
" Topic :: Software Development :: Libraries :: Python Modules" ,
26
29
" Topic :: Utilities" ,
27
- " Operating System :: OS Independent" ,
28
- " Environment :: Web Environment" ,
29
- " Environment :: Other Environment"
30
30
]
31
31
dependencies = [
32
32
" asyncpg>=0.27.0" ,
33
33
" pydantic>=2.0.0" ,
34
34
]
35
35
36
36
[project .urls ]
37
+ Documentation = " https://github.com/janbjorge/pgcachewatch/"
37
38
Homepage = " https://github.com/janbjorge/pgcachewatch/"
38
- Repository = " https://github.com/janbjorge/pgcachewatch/"
39
39
Issues = " https://github.com/janbjorge/pgcachewatch/issues"
40
- Documentation = " https://github.com/janbjorge/pgcachewatch/"
40
+ Repository = " https://github.com/janbjorge/pgcachewatch/"
41
41
42
42
[project .optional-dependencies ]
43
43
dev = [
@@ -56,7 +56,6 @@ write_to = "src/pgcachewatch/_version.py"
56
56
57
57
[tool .ruff ]
58
58
line-length = 88
59
- exclude = [" version.py" ]
60
59
[tool .ruff .lint ]
61
60
select = [
62
61
" C" ,
0 commit comments