2
2
name = " pip-check"
3
3
version = " 3.1"
4
4
description = " Display installed pip packages and their update status."
5
- readme = " README.md"
6
5
requires-python = " >=3.8"
6
+ dynamic = [" readme" ]
7
+ license = { text = " MIT" }
7
8
authors = [
8
9
{
name =
" Martin Mahner" ,
email =
" [email protected] " }
9
10
]
10
- license = { text = " MIT" }
11
+ classifiers = [
12
+ " Development Status :: 5 - Production/Stable" ,
13
+ " Environment :: Console" ,
14
+ " Intended Audience :: Developers" ,
15
+ " License :: OSI Approved :: MIT License" ,
16
+ " Operating System :: OS Independent" ,
17
+ " Programming Language :: Python :: 3.8" ,
18
+ " Programming Language :: Python :: 3.9" ,
19
+ " Programming Language :: Python :: 3.10" ,
20
+ " Programming Language :: Python :: 3.11" ,
21
+ " Programming Language :: Python :: 3.12" ,
22
+ " Programming Language :: Python :: 3.13" ,
23
+ " Programming Language :: Python :: 3.14" ,
24
+ " Programming Language :: Python" ,
25
+ " Software Development :: Build Tools" ,
26
+ ]
11
27
dependencies = [
12
28
" terminaltables" ,
13
29
" packaging" ,
@@ -21,14 +37,26 @@ dev = [
21
37
22
38
[project .urls ]
23
39
Homepage = " https://github.com/bartTC/pip-check/"
40
+ Issues = " https://github.com/bartTC/pip-check/issues"
24
41
25
42
[project .scripts ]
26
43
pip-check = " pip_check:main"
27
44
28
45
[build-system ]
29
- requires = [" hatchling" ]
46
+ requires = [" hatchling" , " hatch-fancy-pypi-readme " ]
30
47
build-backend = " hatchling.build"
31
48
49
+ [tool .hatch .metadata .hooks .fancy-pypi-readme ]
50
+ content-type = " text/markdown"
51
+
52
+ [[tool .hatch .metadata .hooks .fancy-pypi-readme .fragments ]]
53
+ path = " README.md"
54
+
55
+ [[tool .hatch .metadata .hooks .fancy-pypi-readme .fragments ]]
56
+ text = " \n\n "
57
+
58
+ [[tool .hatch .metadata .hooks .fancy-pypi-readme .fragments ]]
59
+ path = " CHANGELOG.md"
32
60
33
61
[tool .ruff ]
34
62
target-version = " py38"
0 commit comments