diff options
author | PJ Eby <distutils-sig@python.org> | 2005-07-09 04:27:38 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-07-09 04:27:38 +0000 |
commit | 755c42c4a62b27779c9b935ff76a874da995bbce (patch) | |
tree | a8710d0ae5977efe3672bc6dd225942424e108c8 /setup.py | |
parent | d3782636f9a68beba1dbefe96421d65af215e48a (diff) | |
download | python-setuptools-git-755c42c4a62b27779c9b935ff76a874da995bbce.tar.gz |
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
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -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( + + + + |