aboutsummaryrefslogtreecommitdiffstats
path: root/pkg_resources.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Refine dependency resolution algorithm so it won't take exponential time,PJ Eby2005-05-221-58/+151
* Add basic "Requirement" class that can tell whether a distribution orPJ Eby2005-05-211-13/+54
* Added "AvailableDistributions" class that finds and indexes usablePJ Eby2005-04-031-81/+162
* Fix handling of -/_ so that they are canonicalized to '-' when doing namePJ Eby2005-04-031-3/+4
* Add a "Distribution" object that wraps a sys.path entry with metadata, andPJ Eby2005-04-031-8/+90
* Add a simple version parser that combines the pre-release smarts ofPJ Eby2005-04-021-3/+44
* Rough draft of version requirement parser. Make bdist_egg look for aPJ Eby2005-04-021-75/+281
* Specify and implement # comments in get_metadata_linesBob Ippolito2005-03-241-7/+12
* import StringIO at module levelBob Ippolito2005-03-241-1/+4
* Reformat pkg_resources in PEP 8 styleBob Ippolito2005-03-241-182/+91
* Add a working pkg_resources implementation that handles extraction andPJ Eby2005-03-231-0/+492