Skip to content
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

Add PEP 517 / PEP 518 metadata #329

Merged
merged 2 commits into from Apr 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/329.feature.rst
@@ -0,0 +1 @@
PEP 517/518 ``build-system`` metadata is now provided in ``pyproject.toml``.
8 changes: 8 additions & 0 deletions pyproject.toml
@@ -1,3 +1,11 @@
[build-system]
requires = [
"setuptools >= 35.0.2",
"wheel >= 0.29.0",
"incremental >= 21.3.0",
]
build-backend = "setuptools.build_meta"

[tool.towncrier]
package = "treq"
package_dir = "src"
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Expand Up @@ -4,6 +4,7 @@ envlist =
{pypy3,py36,py37,py38,py39}-twisted_latest,
{pypy3,py36,py37,py38,py39}-twisted_trunk,
towncrier, twine, check-manifest, flake8, docs
isolated_build = true

[testenv]
extras = dev
Expand Down