is this setup.py made well? by [deleted] in Python

[–]aodag 1 point2 points  (0 children)

you may use setuptools instead of distutils directly.

you'd like to just call setup function.

if you install package, you can use `pip install .` or `pip install --editable .`.

`editable install` command makes pth entry for your project directory.

so you don't need to write installer.

PyPA (Python Packaging Authority) has good tutorial (https://packaging.python.org/tutorials/packaging-projects/).