diff options
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'], +) + |