-
Notifications
You must be signed in to change notification settings - Fork 0
Description
Using sudo, permission to create build directory or egg in working directory is denied. Installation by executing setup.py is only possible using the --user flag (then, library is placed in the $HOME/.local/lib folder instead of /usr/local/lib). Curiously, permissions to write to working directory are granted when omitting sudo.
Using setuptools instead of distutils does not work properly, so the import and the corresponding distribution options are commented out in commit f7c18c9 . setuptools fails to create the egg directory in the site-packages folder and instead creates a single egg file.
Also, package_data={"pamutils": ["LICENSE"]} looks for LICENSE file in /pamutils subdirectory so it does not find the file. Leave package_data out or place the file differently?