From 30421d6e807cb1597cfdc0405c2094c60439be30 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Wed, 11 Aug 2021 07:53:21 +0300 Subject: [PATCH] Add pyproject.toml. It's autogenerated everytime I use pipenv. I don't really need it since I'm targeting old Python and Pip versions that even know about it. The build system declared is setuptools which is what will be used anyway. But I grow tired of always deleting the file (adding it to .gitignore doesn't work because check-manifest complains). I _really_ hope it won't break anything (if it will it will probably be in new Pip versions so I will probably see it, I hope). --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b0471b7 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools", "wheel"] +build-backend = "setuptools.build_meta:__legacy__" \ No newline at end of file -- GitLab