Skip to content

Commit 0e146e6

Browse files
diabravalheri
andauthored
Apply suggestions from code review
Co-authored-by: Anderson Bravalheri <andersonbravalheri+github@gmail.com>
1 parent 3c6eb4e commit 0e146e6

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

pyproject.toml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
[project]
2+
# A general reference for all the fields available in `[project]` can be found at:
3+
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
4+
25
# This is the name of your project. The first time you publish this
36
# package, this name will be registered for you. It will determine how
47
# users can install this project, e.g.:
@@ -28,7 +31,7 @@ description = "A sample Python project" # Optional
2831
# the body of text which users will see when they visit PyPI.
2932
#
3033
# 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)
34+
# that file directly (as we have already done below)
3235
#
3336
# This field corresponds to the "Description" metadata field:
3437
# https://packaging.python.org/specifications/core-metadata/#description-optional
@@ -48,8 +51,8 @@ license = {file = "LICENSE.txt"}
4851
# This field adds keywords for your project which will appear on the
4952
# project page. What does your project relate to?
5053
#
51-
# Note that this is a list of additional keywords, separated
52-
# by commas, to be used to assist searching for the distribution in a
54+
# Note that this is a list of additional keywords,
55+
# to be used to assist searching for the distribution in a
5356
# larger catalog.
5457
keywords= ["sample", "setuptools", "development"] # Optional
5558

@@ -86,7 +89,7 @@ classifiers = [ # Optional
8689

8790
# Specify the Python versions you support here. In particular, ensure
8891
# that you indicate you support Python 3. These classifiers are *not*
89-
# checked by "pip install". See instead "python_requires" below.
92+
# checked by "pip install". See instead "requires-python" below.
9093
"Programming Language :: Python :: 3",
9194
"Programming Language :: Python :: 3.6",
9295
"Programming Language :: Python :: 3.7",
@@ -112,7 +115,7 @@ dependencies=[
112115
#
113116
# $ pip install sampleproject[dev]
114117
#
115-
# Similar to `install_requires` above, these must be valid existing
118+
# Similar to `dependencies` above, these must be valid existing
116119
# projects.
117120
[project.optional-dependencies]
118121
dev = ["check-manifest"] # Optional
@@ -151,7 +154,7 @@ sample = "sample:main"
151154
package-data = {"sample" = ["*.dat"]}
152155

153156
[build-system]
154-
# These are the requirements required to build this project
157+
# These are requirements for building this project
155158
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
156159
requires = ["setuptools>=61.0.0", "wheel"]
157160
build-backend = "setuptools.build_meta"

0 commit comments

Comments
 (0)