- leaving optional libs not as default test dependencies, e.g.
beaker, lingua, babel
diff --git a/setup.py b/setup.py
index 60ce08e..56754aa 100644
--- a/setup.py
+++ b/setup.py
@@ -32,14 +32,14 @@
  best ideas from the existing templating languages.",
       long_description=readme,
       classifiers=[
-      'Development Status :: 5 - Production/Stable',
-      'Environment :: Web Environment',
-      'Intended Audience :: Developers',
-      'Programming Language :: Python',
-      'Programming Language :: Python :: 3',
-      "Programming Language :: Python :: Implementation :: CPython",
-      "Programming Language :: Python :: Implementation :: PyPy",
-      'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
+          'Development Status :: 5 - Production/Stable',
+          'Environment :: Web Environment',
+          'Intended Audience :: Developers',
+          'Programming Language :: Python',
+          'Programming Language :: Python :: 3',
+          "Programming Language :: Python :: Implementation :: CPython",
+          "Programming Language :: Python :: Implementation :: PyPy",
+          'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
       ],
       keywords='templates',
       author='Mike Bayer',
@@ -47,7 +47,7 @@
       url='http://www.makotemplates.org/',
       license='MIT',
       packages=find_packages('.', exclude=['examples*', 'test*']),
-      tests_require=['nose >= 0.11', 'mock', 'Babel', 'lingua >= 3.2'],
+      tests_require=['nose >= 0.11', 'mock'],
       test_suite="nose.collector",
       zip_safe=False,
       install_requires=install_requires,