summaryrefslogtreecommitdiff
path: root/pkg_resources.py
Commit message (Expand)AuthorAgeFilesLines
...
* Document utility routines. Made ``split_sections()`` not lowercase itsPJ Eby2005-08-071-12/+14
* Renamed AvailableDistributions -> Environment. Add sketch of pkg_resourcesPJ Eby2005-08-071-6/+6
* Fix WorkingSet yielding the same distribution more than once if more thanPJ Eby2005-08-061-23/+23
* Allow specifying an environment and/or installer for entry-point loading.PJ Eby2005-08-061-4/+4
* Performance boosts: don't create environment during require()/resolve()PJ Eby2005-08-061-10/+10
* Fix a problem with zip paths reported by Ashley Walsh.PJ Eby2005-08-031-1/+1
* Misc. bugs reported by Ian Bicking and Ashley Walsh.PJ Eby2005-07-311-2/+2
* Misc. bug fixes and doc additions. Add 'iter_entry_points()' API.PJ Eby2005-07-251-58/+56
* Implement "entry points" for dynamic discovery of drivers and plugins.PJ Eby2005-07-241-40/+247
* Fix eager resource extraction. Add eager_resources setup() argument. AddPJ Eby2005-07-241-73/+73
* Improved backward compatibility of Mac OS platform string changes, thanksPJ Eby2005-07-211-18/+59
* Tweak Mac OS platform string based on Mac SIG feedback: remove "micro"PJ Eby2005-07-211-7/+7
* Added support for handling MacOS platform information in ``.egg``PJ Eby2005-07-211-20/+61
* Catch a few missed terminology changes.PJ Eby2005-07-181-8/+8
* Massive API refactoring; see setuptools.txt changelog for details. Also,PJ Eby2005-07-181-1/+1
* Massive API refactoring; see setuptools.txt changelog for details. Also,PJ Eby2005-07-181-138/+299
* The ``path`` attribute of ``Distribution`` objects is now ``location``,PJ Eby2005-07-171-25/+28
* ``Distribution`` objects now implement the ``IResourceProvider`` andPJ Eby2005-07-171-19/+19
* Renamings for consistent terminology; distributions and requirements nowPJ Eby2005-07-171-20/+20
* Fixed some problems using ``pkg_resources`` w/PEP 302 loaders other thanPJ Eby2005-07-161-30/+30
* Fix a problem extracting resources from nested packages.PJ Eby2005-07-151-2/+1
* Updated extraction/cache mechanism for zipped resources to avoid inter-PJ Eby2005-07-131-18/+101
* Fix bugs and implement features reported/requested by folks on thePJ Eby2005-07-121-9/+9
* The "egg_info" command now always sets the distribution metadata to "safe"PJ Eby2005-07-081-1/+1
* Fix for .py scripts that might be imported (e.g. the "py" library's hideousPJ Eby2005-07-071-8/+8
* Added ``develop`` command to ``setuptools``-based packages. This commandPJ Eby2005-07-061-9/+9
* EasyInstall/setuptools 0.5a4: significant new features, including automaticPJ Eby2005-06-271-12/+12
* Fix incorrect sorting of packages by string version instead of parsedPJ Eby2005-06-151-10/+10
* Fix more zipped-egg directory resource bugs reported by Ryan Tomayko.PJ Eby2005-06-141-9/+9
* Fix typos found by Ryan Tomayko.PJ Eby2005-06-141-2/+2
* Fix missing '__file__' when running scripts.PJ Eby2005-06-141-1/+1
* Fix a bug in resource_isdir(), introduced in 0.4a2. Add str/repr ofPJ Eby2005-06-141-9/+9
* Add 'ez_setup' bootstrap installer. Prep for 0.4a2 release.PJ Eby2005-06-121-1/+42
* Add script installation support. Use distutils' exceptions for optionPJ Eby2005-06-121-49/+131
* Implement PyPI screenscraping for EasyInstall. Fix a bug in requirementPJ Eby2005-06-051-15/+15
* Add "safe_name" and "safe_version" functions to allow sanitizing ofPJ Eby2005-06-051-12/+53
* Make ``AvailableDistributions`` keep track of the desired platform/python.PJ Eby2005-06-051-34/+34
* Add support for prioritized sorting of distributions by distribution type,PJ Eby2005-06-051-11/+11
* Add support for resource isdir/listdir operations. Support directoryPJ Eby2005-06-041-39/+119
* Correctly recognize .egg files that are already on sys.path (or whateverPJ Eby2005-05-291-7/+9
* Add "easy_install" script that downloads distutils source (or .egg files)PJ Eby2005-05-291-8/+8
* Fix some typos and a missing importPJ Eby2005-05-251-9/+9
* Implement draft support for namespace packages, both declaring themPJ Eby2005-05-251-18/+141
* Support registering distribution finders for arbitrary PEP 302 importerPJ Eby2005-05-251-5/+128
* Implement a draft version of 'find_distributions()' with hardcoded supportPJ Eby2005-05-241-77/+118
* Make AvailableDistributions check distributions for Python versionPJ Eby2005-05-231-25/+25
* Add a rough draft of Distribution.install_on(), to let others experimentPJ Eby2005-05-231-6/+6
* Add tests for AvailableDistributions().resolve(). This effectivelyPJ Eby2005-05-231-6/+6
* Added support for specifying options on requirements, so that a package'sPJ Eby2005-05-221-41/+123
* Distribution metadata parsing: distribution objects can now extract theirPJ Eby2005-05-221-29/+100