aboutsummaryrefslogtreecommitdiffstats
path: root/pkg_resources.py
Commit message (Expand)AuthorAgeFilesLines
* 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