You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: index.md
+3-6Lines changed: 3 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,7 @@ The archive and handoff branches from prior collapses are indicate here:
93
93
The features/techniques employed by the skeleton include:
94
94
95
95
- PEP 517/518-based build relying on Setuptools as the build tool
96
-
- Setuptools declarative configuration using setup.cfg
96
+
- Setuptools declarative configuration using pyproject.toml
97
97
- tox for running tests
98
98
- A README.rst as reStructuredText with some popular badges, but with Read the Docs badges commented out
99
99
- A CHANGES.rst file intended for publishing release notes about the project
@@ -104,12 +104,9 @@ The features/techniques employed by the skeleton include:
104
104
105
105
## Packaging Conventions
106
106
107
-
A pyproject.toml is included to enable PEP 517 and PEP 518 compatibility and declares the requirements necessary to build the project on Setuptools (a minimum version compatible with setup.cfg declarative config).
107
+
A pyproject.toml is included and implements the following features:
108
108
109
-
The setup.cfg file implements the following features:
110
-
111
-
- Assumes universal wheel for release
112
-
- Advertises the project's LICENSE file (MIT by default)
109
+
- Enable PEP 517 and PEP 518 to build the project on Setuptools.
113
110
- Reads the README.rst file into the long description
0 commit comments