[Checkins] SVN: zope.i18nmessageid/trunk/setup.py Simplify setup.py

Hanno Schlichting hannosch at hannosch.eu
Fri Apr 30 16:27:08 EDT 2010


Log message for revision 111703:
  Simplify setup.py
  

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

-=-
Modified: zope.i18nmessageid/trunk/setup.py
===================================================================
--- zope.i18nmessageid/trunk/setup.py	2010-04-30 20:25:26 UTC (rev 111702)
+++ zope.i18nmessageid/trunk/setup.py	2010-04-30 20:27:08 UTC (rev 111703)
@@ -22,13 +22,8 @@
 """
 
 import os
-import sys
 
 from setuptools import setup, find_packages, Extension, Feature
-from distutils.command.build_ext import build_ext
-from distutils.errors import CCompilerError
-from distutils.errors import DistutilsExecError
-from distutils.errors import DistutilsPlatformError
 
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
@@ -55,7 +50,7 @@
         + '\n\n' +
         read('CHANGES.txt')
         ),
-    keywords = "zope3 i18n message factory",
+    keywords = "zope i18n message factory",
     classifiers = [
         'Development Status :: 5 - Production/Stable',
         'Environment :: Web Environment',
@@ -72,7 +67,6 @@
     package_dir = {'': 'src'},
     features = {'codeoptimization': codeoptimization},
     namespace_packages=['zope',],
-    tests_require = ['zope.testing'],
     install_requires=['setuptools'],
     include_package_data = True,
     zip_safe = False,



More information about the checkins mailing list