aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Ganssle <pganssle@users.noreply.github.com>2019-02-04 15:19:59 -0500
committerGitHub <noreply@github.com>2019-02-04 15:19:59 -0500
commit6db5a272fc89b0fe9431940f399d13c042b1bdf5 (patch)
treeb7af94b511d7bb6a74eb7f059a6e1e8082d6f4b0
parent9b9d84dde19b8f0b4b568977079eead975941c87 (diff)
parent05191103733faa9a5d41ac0f014004dd4c75048e (diff)
downloaddateutil-6db5a272fc89b0fe9431940f399d13c042b1bdf5.tar.gz
Merge pull request #863 from pganssle/add_pep517
Add build backend to pyproject.toml
-rw-r--r--MANIFEST.in2
-rw-r--r--changelog.d/863.bugfix.rst1
-rw-r--r--pyproject.toml1
3 files changed, 3 insertions, 1 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index dd5142e..d4d9f32 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,4 +1,4 @@
-include LICENSE NEWS zonefile_metadata.json updatezinfo.py
+include LICENSE NEWS zonefile_metadata.json updatezinfo.py pyproject.toml
recursive-include dateutil/test *
global-exclude __pycache__
global-exclude *.py[co]
diff --git a/changelog.d/863.bugfix.rst b/changelog.d/863.bugfix.rst
new file mode 100644
index 0000000..efe47dd
--- /dev/null
+++ b/changelog.d/863.bugfix.rst
@@ -0,0 +1 @@
+Added a ``build-system.build-backend`` key in ``pyproject.toml`` and explicitly started shipping the ``pyproject.toml`` file in source distributions. (gh pr #863)
diff --git a/pyproject.toml b/pyproject.toml
index 784d1d1..2c73368 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -5,6 +5,7 @@ requires = [
"wheel",
"setuptools_scm"
]
+build-backend = "setuptools.build_meta"
[tool.towncrier]
package = "dateutil"