Modify ↓
Opened 16 years ago
Closed 16 years ago
#3347 closed enhancement (wontfix)
requested hack: plugin to export eggs
Reported by: | Jeff Hammel | Owned by: | anybody |
---|---|---|---|
Priority: | normal | Component: | Request-a-Hack |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
trac already has such niceties as downloading the zipped source, etc. if the source is a python package (that is, there is a setup.py in the repository), it would be nice to have a plugin that exports eggs for download. the plugin will make the egg for you and make it available for download. this is probably easy to do, maybe less easy to get working really well
Attachments (0)
Note: See
TracTickets for help on using
tickets.
This is not possible to do in a secure manner as building the egg requires executing
setup.py
, which could possibly contain malicious code. The only safe way to do this is for the author to build the eggs and upload them, which is what thesetup.py upload
command does (uploads to PyPI, not here).