-
Notifications
You must be signed in to change notification settings - Fork 473
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide standard installation methods. #145
Comments
Resolves noxrepo#145. - Added a setup.py - Provide an entry_point to pox.boot.boot() for the cli - Install /var/lib/pox-<version> - Now looks for extensions in /var/lib/pox-<version>/ext - Also looks for extensions in $PWD/ext - installs tools to /var/lib/pox-<version>/tools - licenses, readme, etc. installed to /var/lib/pox-<version>/doc
I've started work on this, the installation succeeds. Before I go further, it would be nice to receive feedback on if this change is desired. The changes are found in the commit referenced above or you can find it here: jameskyle@944d91a |
Resolves noxrepo#145. - Added a setup.py - Provide an entry_point to pox.boot.boot() for the cli - Install /var/lib/pox-<version> - Now looks for extensions in /var/lib/pox-<version>/ext - Also looks for extensions in $PWD/ext - installs tools to /var/lib/pox-<version>/tools - licenses, readme, etc. installed to /var/lib/pox-<version>/doc - Removes the debug-config.py alias trick due to pathing issues for cli install - now use pox --debug - Removes the pypy trick. - to use pypy, install with pypy via: pypy setup.py install This will ensure scripts have a #!/usr/bin/pypy shebang.
Resolves noxrepo#145. - Added a setup.py - Provide an entry_point to pox.boot.boot() for the cli - Install /var/lib/pox-<version> - Now looks for extensions in /var/lib/pox-<version>/ext - Also looks for extensions in $PWD/ext - installs tools to /var/lib/pox-<version>/tools - licenses, readme, etc. installed to /var/lib/pox-<version>/doc - Removes the debug-config.py alias trick due to pathing issues for cli install - now use pox --debug - Removes the pypy trick. - to use pypy, install with pypy via: pypy setup.py install This will ensure scripts have a #!/usr/bin/pypy shebang.
Just a note that you might try seeing if anyone on pox-dev has thoughts on the issue too. |
@MurphyMc pox-dev mailing list, IRC, etc? edit nm, found it. Mailing list. |
@MurphyMc I've posed to the mailing list, but have not received a response. |
Resolves noxrepo#145. - Added a setup.py - Provide an entry_point to pox.boot.boot() for the cli - Install /var/lib/pox-<version> - Now looks for extensions in /var/lib/pox-<version>/ext - Also looks for extensions in $PWD/ext - installs tools to /var/lib/pox-<version>/tools - licenses, readme, etc. installed to /var/lib/pox-<version>/doc - Removes the debug-config.py alias trick due to pathing issues for cli install - now use pox --debug - Removes the pypy trick. - to use pypy, install with pypy via: pypy setup.py install This will ensure scripts have a #!/usr/bin/pypy shebang.
To ease deployment and development, provide standard installation and packaging such as setup.py and requirements.txt.
The text was updated successfully, but these errors were encountered: