-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Update "project" to mention pyproject.toml, not just setuptools #755
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -102,11 +102,10 @@ Glossary | |
| packaged into a :term:`Distribution <Distribution Package>`. | ||
|
|
||
| Since most projects create :term:`Distributions <Distribution Package>` | ||
| using :ref:`distutils` or :ref:`setuptools`, another practical way to | ||
| define projects currently is something that contains a :term:`setup.py` | ||
| at the root of the project src directory, where "setup.py" is the | ||
| project specification filename used by :ref:`distutils` and | ||
| :ref:`setuptools`. | ||
| using either :pep:`518` ``build-system``, :ref:`distutils` or | ||
| :ref:`setuptools`, another practical way to define projects currently | ||
| is something that contains a :term:`pyproject.toml`, :term:`setup.py`, | ||
| or :term:`setup.cfg` file at the root of the project source directory. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it valid to have
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @pfmoore it is valid to have
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK, but in that case you need a |
||
|
|
||
| Python projects must have unique names, which are registered on | ||
| :term:`PyPI <Python Package Index (PyPI)>`. Each project will then | ||
|
|
@@ -151,6 +150,11 @@ Glossary | |
| domain name, `pypi.python.org`, in 2017. It is powered by | ||
| :ref:`warehouse`. | ||
|
|
||
| pyproject.toml | ||
|
|
||
| The tool-agnostic :term:`project` specification file. | ||
| Defined in :pep:`518`. | ||
|
|
||
| Release | ||
|
|
||
| A snapshot of a :term:`Project` at a particular point in time, denoted | ||
|
|
@@ -189,8 +193,10 @@ Glossary | |
|
|
||
|
|
||
| setup.py | ||
| setup.cfg | ||
|
|
||
| The project specification file for :ref:`distutils` and :ref:`setuptools`. | ||
| The project specification files for :ref:`distutils` and :ref:`setuptools`. | ||
| See also :term:`pyproject.toml`. | ||
|
|
||
|
|
||
| Source Archive | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd also swap distutils/setuptools to keep have list in the order of priority: