From d220c4c3bcf31b9d4660a6e915e70269c891bd9f Mon Sep 17 00:00:00 2001 From: Benjamin Schubert Date: Sat, 18 May 2019 14:01:08 +0100 Subject: Introduce pyproject.toml Using pyproject.toml, defined in PEP518, allows us to have an isolated build environment, ensuring that Cython can be installed before calling setup.py in tox. This allows us to use cython helpers in the setup.py script. This is a prerequisite for introducing Cython in the codebase --- MANIFEST.in | 3 +++ 1 file changed, 3 insertions(+) (limited to 'MANIFEST.in') diff --git a/MANIFEST.in b/MANIFEST.in index d0de0e593..7be35c0be 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -43,3 +43,6 @@ include requirements/plugin-requirements.txt # Versioneer include versioneer.py + +# setuptools.build_meta don't include setup.py by default. Add it +include setup.py -- cgit v1.2.1