From d332c4c3c3eb7d65140f2094a36fdf9a1f2c254a Mon Sep 17 00:00:00 2001 From: PJ Eby Date: Sun, 29 May 2005 00:17:22 +0000 Subject: Add "easy_install" script that downloads distutils source (or .egg files) and builds and installs them as eggs, with support for managing .pth files. Built distributions are installed in individual subdirectories, so you can either add the directory to a .pth (automatically done by default), or you can use pkg_resources.require() to manage your dependencies explicitly. Because each distribution is in its own directory (or .egg file), uninstallation and clean upgrades are trivial, without the aid of any sort of package manager. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041017 --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 614e0fd1..12005e72 100755 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from distutils.version import LooseVersion setup( name="setuptools", - version="0.0.1", + version="0.3a1", description="Distutils enhancements", author="Phillip J. Eby", @@ -22,6 +22,7 @@ setup( Require('PyUnit', None, 'unittest', "http://pyunit.sf.net/"), ], packages = find_packages(), - py_modules = ['pkg_resources'], + py_modules = ['pkg_resources', 'easy_install'], + scripts = ['easy_install.py'] ) -- cgit v1.2.1