diff options
author | PJ Eby <distutils-sig@python.org> | 2004-03-19 20:53:14 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2004-03-19 20:53:14 +0000 |
commit | 8423e1ed14ac1691c2863c6e8cac9230cf558d7b (patch) | |
tree | 79f2d2cef146e08a9480357637cca4662307bd08 /setup.py | |
download | external_python_setuptools-8423e1ed14ac1691c2863c6e8cac9230cf558d7b.tar.gz external_python_setuptools-8423e1ed14ac1691c2863c6e8cac9230cf558d7b.tar.bz2 external_python_setuptools-8423e1ed14ac1691c2863c6e8cac9230cf558d7b.zip |
Initial checkin of setuptools 0.0.1.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4040869
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100755 index 00000000..1aadf759 --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +#!/usr/bin/env python + +"""Distutils setup file, used to install or test 'setuptools'""" + +from setuptools import setup, find_packages, Require + +setup( + name="setuptools", + version="0.0.1", + + description="Distutils enhancements", + author="Phillip J. Eby", + author_email="peak@eby-sarna.com", + license="PSF or ZPL", + + test_suite = 'setuptools.tests.test_suite', + requires = [Require('Distutils','1.0.3','distutils')], + packages = find_packages(), + py_modules = ['setuptools_boot'], +) + |