summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/setup.py b/setup.py
index 6af80810..c41ec57c 100755
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,8 @@ def get_description():
VERSION = "0.5a8"
-from setuptools import setup, find_packages, Require
+from setuptools import setup, find_packages
+
setup(
name="setuptools",
version=VERSION,
@@ -30,19 +31,14 @@ setup(
keywords = "CPAN PyPI distutils eggs package management",
url = "http://peak.telecommunity.com/DevCenter/setuptools",
test_suite = 'setuptools.tests.test_suite',
- requires = [
- Require('Distutils','1.0.3','distutils',
- "http://www.python.org/sigs/distutils-sig/"
- ),
- Require('PyUnit', None, 'unittest', "http://pyunit.sf.net/"),
- ],
-
-
packages = find_packages(),
py_modules = ['pkg_resources'],
scripts = ['easy_install.py'],
+
+
+
classifiers = [f.strip() for f in """
Development Status :: 3 - Alpha
Intended Audience :: Developers
@@ -80,3 +76,7 @@ setup(
+
+
+
+