diff options
author | Erik Skultety <eskultet@redhat.com> | 2023-03-27 11:21:12 +0200 |
---|---|---|
committer | Erik Skultety <eskultet@redhat.com> | 2023-03-27 11:46:02 +0200 |
commit | 84b2d110f318da1c9baa43e10b6c77e8248a7988 (patch) | |
tree | 784deb7dc1d49c9b356ba3e548825c5585b959c2 /setup.py | |
parent | 413e80bb568e3ee353395f493b41a921d88af344 (diff) | |
download | libvirt-ci-84b2d110f318da1c9baa43e10b6c77e8248a7988.zip libvirt-ci-84b2d110f318da1c9baa43e10b6c77e8248a7988.tar.gz libvirt-ci-84b2d110f318da1c9baa43e10b6c77e8248a7988.tar.bz2 |
Introduce a legacy setup.py file
Turns out, PEP 517 [1] didn't say anything about editable installs with
pyproject.toml based builds. That's what was covered by PEP 660 [2],
which however, isn't supported in setuptools < 64.0.0. Our current
setuptools requirement is >62.3, but it'll take time before v64.0.0
will be widely available outside of PyPI.
Therefore, introduce a simple legacy setup.py which solves this for the
time being.
This commit partially reverts b1562114.
[1] https://peps.python.org/pep-0517/
[2] https://peps.python.org/pep-0660/
Signed-off-by: Erik Skultety <eskultet@redhat.com>
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..6068493 --- /dev/null +++ b/setup.py @@ -0,0 +1,3 @@ +from setuptools import setup + +setup() |