summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2018-10-21 16:31:46 -0400
committerGitHub <noreply@github.com>2018-10-21 16:31:46 -0400
commitb431bbb992f47116f55d3680405d5dd82f0a2f4b (patch)
tree1c243f032040e42c567a6c01e281a9f5f26746b8 /pyproject.toml
parent9d73d7b0845cc14d9592daa05b87e2e5b21e9372 (diff)
downloadpython-markdown-b431bbb992f47116f55d3680405d5dd82f0a2f4b.tar.gz
Up version to 3.1.dev0 (#736)
Update version format to be PEP 440 compliant in preparation for #732. Add `pyproject.toml` file and configure tox to use it. Define requirement for `setuptools>=36` which validates and normalizes the version format.
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml4
1 files changed, 4 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..a1d0683
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,4 @@
+[build-system]
+# Minimum requirements for the build system to execute.
+requires = ["setuptools>=36", "wheel"]
+build-backend = "setuptools.build_meta"