Commit 755c42c4 authored by PJ Eby's avatar PJ Eby

Remove old-style requirements from setup.py, to avoid confusing people who

look to it for an example of setuptools use.

--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041105
parent d3782636
......@@ -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
......@@ -75,6 +71,10 @@ setup(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment