From 336a065df01a4b409f57809a668208d666010a62 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Tue, 17 Jan 2017 09:44:26 -0500 Subject: Add pyproject.toml per PEP 518 for use by a future pip release. Ref #581. --- pyproject.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..0aa2e1c8 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,9 @@ +[build-system] +# for Setuptools, its own requirements are build requirements, +# so keep this in sync with install_requires in setup.py. +requires = [ + "wheel", + "packaging>=16.8", + "six>=1.10.0", + "appdirs>=1.4.0", +] -- cgit v1.2.1