On 10/28/20 3:49 PM, Cleber Rosa wrote:
On Tue, Oct 20, 2020 at 03:35:42PM -0400, John Snow wrote:
Add setup.cfg and setup.py, necessary for installing a package via
pip. Add a rst document explaining the basics of what this package is
for and who to contact for more information. This document will be used
as the landing page for the package on PyPI.

I am not yet using a pyproject.toml style package manifest, because
using pyproject.toml (and PEP-517) style packages means that pip is not
able to install in "editable" or "develop" mode, which I consider
necessary for the development of this package.

Use a light-weight setup.py instead.

Signed-off-by: John Snow <js...@redhat.com>
---
  python/PACKAGE.rst | 26 ++++++++++++++++++++++++++
  python/setup.cfg   | 18 ++++++++++++++++++
  python/setup.py    | 23 +++++++++++++++++++++++
  3 files changed, 67 insertions(+)
  create mode 100644 python/PACKAGE.rst
  create mode 100755 python/setup.cfg

I missed this earlier: setup.cfg does not need to have the execute bit
on.

- Cleber.


Fixed this locally already; it came along when I ran 'cp setup.py setup.cfg', obviously!


Reply via email to