Opened 16 years ago
Closed 14 years ago
#11372 closed New feature (wontfix)
Support setup.py develop
| Reported by: | Kenneth Arnold | Owned by: | nobody |
|---|---|---|---|
| Component: | Core (Other) | Version: | dev |
| Severity: | Normal | Keywords: | |
| Cc: | Kenneth Arnold | Triage Stage: | Design decision needed |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
http://docs.djangoproject.com/en/dev/topics/install/#installing-development-version is overly complex because you have to deal with paths etc. With the attached tiny patch, steps 3 and 4 become: run python setup.py develop.
Unlike the other setuptools tickets, you don't have to switch to the setuptools way of doing things in order to use it; you can just opportunistically import from setuptools if it's available.
Attachments (1)
Change History (5)
by , 16 years ago
| Attachment: | django-minisetuptools.patch added |
|---|
comment:1 by , 16 years ago
| Cc: | added |
|---|
comment:2 by , 16 years ago
| Triage Stage: | Unreviewed → Design decision needed |
|---|
comment:3 by , 15 years ago
| Severity: | → Normal |
|---|---|
| Type: | → New feature |
comment:4 by , 14 years ago
| Easy pickings: | unset |
|---|---|
| Resolution: | → wontfix |
| Status: | new → closed |
| UI/UX: | unset |
Note:
See TracTickets
for help on using tickets.
Developers may have
setuptoolsinstalled because they need a package that requires it. That doesn't mean they prefer it overdistutils.distutils,pipandvirtualenvare currently the preferred solutions. See http://www.b-list.org/weblog/2008/dec/14/packaging/ for more background on this issue.