[Checkins] SVN: zope.tal/trunk/setup.py - `tests_require` only required to specify packages

Baiju M baiju.m.mail at gmail.com
Sat Nov 17 02:25:58 EST 2007


Log message for revision 81892:
   - `tests_require` only required to specify packages
     not listed in `install_requires`
     To run tests, recommended way is to run ``setup.py develop``
     follwed by ``setup.py test``
   - s/cheeseshop/pypi -- long live PyPI !
   - s/zope3-dev/zope-dev -- long live zope-dev !
  

Changed:
  U   zope.tal/trunk/setup.py

-=-
Modified: zope.tal/trunk/setup.py
===================================================================
--- zope.tal/trunk/setup.py	2007-11-17 02:31:30 UTC (rev 81891)
+++ zope.tal/trunk/setup.py	2007-11-17 07:25:57 UTC (rev 81892)
@@ -43,7 +43,7 @@
 setup(name='zope.tal',
       version = '3.4.2dev',
       author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
+      author_email='zope-dev at zope.org',
       description='Zope 3 Template Application Languate (TAL)',
       long_description=(
           read('README.txt')
@@ -61,7 +61,7 @@
           'Operating System :: OS Independent',
           'Topic :: Internet :: WWW/HTTP',
           'Framework :: Zope3'],
-      url='http://cheeseshop.python.org/pypi/zope.tal',
+      url='http://pypi.python.org/pypi/zope.tal',
       license='ZPL 2.1',
       packages=find_packages('src'),
       package_dir = {'': 'src'},
@@ -70,9 +70,7 @@
           test=['zope.testing',
                 ]),
       test_suite="__main__.alltests", # to support "setup.py test"
-      tests_require = ['zope.i18nmessageid',
-                       'zope.interface',
-                       'zope.testing'],
+      tests_require = ['zope.testing'],
       install_requires=['setuptools',
                         'zope.i18nmessageid',
                         'zope.interface',



More information about the Checkins mailing list