aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/easy_install.py
Commit message (Expand)AuthorAgeFilesLines
* Fix easy_install not recognizing win32.exe files that include a custom bitmap.PJ Eby2006-09-211-1/+1
* Backport all known 2.5-compatibility fixesPJ Eby2006-09-201-1/+1
* Generated scripts now use ``-x`` on the ``#!`` line when ``sys.executable``PJ Eby2006-09-061-11/+11
* Don't check installation directory writability and site/.pth setup whenPJ Eby2006-09-061-2/+2
* Fix ``sys.path_importer_cache`` not being updated when an existing zipfilePJ Eby2006-07-101-9/+9
* Implement detection of non-Python scripts, as described inPJ Eby2006-06-151-5/+46
* Fix sometimes not detecting local packages installed outside of "site"PJ Eby2006-06-091-1/+1
* Fix local --find-links eggs not being copied except with --always-copy.PJ Eby2006-06-071-11/+11
* Construct ``.pth`` file paths in such a way that installing an egg whosePJ Eby2006-05-301-3/+3
* Don't make things warnings that aren't; update info text forPJ Eby2006-05-261-6/+6
* Don't install or update a ``site.py`` patch when installing to aPJ Eby2006-05-231-5/+3
* Backport 'module' fixes to 0.6PJ Eby2006-04-241-3/+3
* Implement dependency_links feature, courtesy of Tres Seaver's roughPJ Eby2006-03-291-4/+6
* Support complex .pth files in win32.exe->.egg conversion; this additionPJ Eby2006-03-291-5/+5
* Fix ZipImportError when overwriting a zipfile with the same name/versionPJ Eby2006-03-241-13/+13
* Use relative paths in ``.pth`` files when eggs are being installed to thePJ Eby2006-03-201-14/+14
* Support namespace packages in conjunction with system packagers, by omittingPJ Eby2006-03-171-2/+2
* Added automatic handling of installation conflicts. Eggs are now shifted toPJ Eby2006-03-111-22/+63
* When installing setup_requires/tests_require packages, usePJ Eby2006-02-281-2/+2
* Minor tweak to installation report, and add in a hook for laterPJ Eby2006-02-141-6/+6
* Fix a Windows problem when the Python executable is in a directory withPJ Eby2006-02-141-11/+11
* Added exhaustive testing of the install directory, including a spawn testPJ Eby2006-02-131-24/+147
* Fixed the annoying ``--help-commands`` wart, albeit in a mostPJ Eby2006-02-101-6/+47
* --prefix support for even more do-what-I-meanishness. :)PJ Eby2006-02-101-32/+72
* Implemented DWIM for PYTHONPATH. That is, ez_setup and easy_installPJ Eby2006-02-101-14/+97
* Ugh. Rereading the Fedora patch shows my previous hack won't actuallyPJ Eby2006-02-101-2/+2
* Oops, bad indentation.PJ Eby2006-02-101-2/+2
* Tweak site_dirs detection so that distros with weird layouts (e.g.PJ Eby2006-02-101-4/+4
* The ``--find-links`` option previously scanned all supplied URLs andPJ Eby2006-02-081-3/+3
* The ``--always-copy`` option now skips "system" and "development" eggsPJ Eby2006-02-071-13/+13
* Fix missing import.PJ Eby2006-01-271-1/+1
* Expand ``$variables`` used in the ``--site-dirs``, ``--build-directory``,PJ Eby2006-01-261-10/+10
* Fix typo.PJ Eby2006-01-221-1/+1
* EasyInstall can now download bare ``.py`` files and wrap them in an egg,PJ Eby2006-01-101-1/+1
* Make the install_scripts command respect the "build_scripts -e"PJ Eby2005-12-261-5/+5
* Support full roundtrip translation of eggs to and from ``bdist_wininst``PJ Eby2005-12-141-9/+9
* Refactor script wrapper generation into a separate function so that itPJ Eby2005-12-141-48/+48
* Basic roundtripping support between bdist_wininst and eggs. EasyInstallPJ Eby2005-12-141-16/+16
* Made all commands that use ``easy_install`` respect its configurationPJ Eby2005-12-011-11/+11
* Fixed ``.pth`` file processing picking up nested eggs (i.e. ones insidePJ Eby2005-11-181-3/+3
* Fix rmtree() brokenness with Python 2.4 by breaking down and copyingPJ Eby2005-11-051-41/+41
* Handle non-requirement installs correctly for dependency processingPJ Eby2005-11-031-2/+2
* Fix some Subversion-related problems reported by John J. Lee:PJ Eby2005-11-031-21/+62
* Added "--allow-hosts" option to restrict downloading and spidering toPJ Eby2005-10-191-9/+9
* Hurray! Our first dependency processing bug! This is cool because itPJ Eby2005-10-181-1/+1
* Fix problem with Windows console scripts conflicting with module names,PJ Eby2005-10-161-14/+14
* Implement --no-deps option, add link to Ian Bicking's non-root PythonPJ Eby2005-10-161-4/+4
* Support generating .pyw/.exe wrappers for Windows GUI scripts, andPJ Eby2005-09-241-41/+41
* Implement smart version conflict resolution for scripts, so thatPJ Eby2005-09-241-3/+3
* Added support to solve the infamous "we want .py on Windows, noPJ Eby2005-09-171-58/+99