diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2017-01-17 09:44:26 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-01-17 09:44:37 -0500 |
| commit | 336a065df01a4b409f57809a668208d666010a62 (patch) | |
| tree | f9c96026e2ae0bd63e88789ed05922ab09d47a84 /pyproject.toml | |
| parent | c80f03bed382c523778c196f93616a04d3d8aa0c (diff) | |
| download | external_python_setuptools-336a065df01a4b409f57809a668208d666010a62.tar.gz external_python_setuptools-336a065df01a4b409f57809a668208d666010a62.tar.bz2 external_python_setuptools-336a065df01a4b409f57809a668208d666010a62.zip | |
Add pyproject.toml per PEP 518 for use by a future pip release. Ref #581.
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 9 |
1 files changed, 9 insertions, 0 deletions
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", +] |
