@@ -28,22 +28,22 @@ description = "A sample Python project" # Optional
28
28
# the body of text which users will see when they visit PyPI.
29
29
#
30
30
# Often, this is the same as your README, so you can just read it in from
31
- # that file directly (as we have already done above)
31
+ # that file directly.
32
32
#
33
33
# This field corresponds to the "Description" metadata field:
34
34
# https://packaging.python.org/specifications/core-metadata/#description-optional
35
35
readme = " README.md" # Optional
36
36
37
37
# Specify which Python versions you support. In contrast to the
38
- # 'Programming Language' classifiers above , 'pip install' will check this
38
+ # 'Programming Language' classifiers, 'pip install' will check this
39
39
# and refuse to install the project if the version does not match. See
40
40
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
41
- requires-python = " >=3.8"
41
+ requires-python = " >=3.8" # Optional
42
42
43
43
# This is either text indicating the license for the distribution, or a file
44
- # that contains the license
44
+ # that contains the license.
45
45
# https://packaging.python.org/en/latest/specifications/core-metadata/#license
46
- license = {file = " LICENSE.txt" }
46
+ license = {file = " LICENSE.txt" } # Optional
47
47
48
48
# This field adds keywords for your project which will appear on the
49
49
# project page. What does your project relate to?
@@ -86,7 +86,7 @@ classifiers = [ # Optional
86
86
87
87
# Specify the Python versions you support here. In particular, ensure
88
88
# that you indicate you support Python 3. These classifiers are *not*
89
- # checked by "pip install". See instead "python_requires" below .
89
+ # checked by "pip install". See instead "requires-python" .
90
90
" Programming Language :: Python :: 3" ,
91
91
" Programming Language :: Python :: 3.8" ,
92
92
" Programming Language :: Python :: 3.9" ,
0 commit comments