Skip to content

Commit

Permalink
Added not declared, but needed test dependency on `zope.component [te…
Browse files Browse the repository at this point in the history
…st]`.
  • Loading branch information
Michael Howitz committed Sep 25, 2010
1 parent 65f1fa9 commit 6649e0f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGES.txt
Expand Up @@ -10,6 +10,8 @@ CHANGES

- Prevent fatal errors in mail delivery causing potential database corruption.

- Added not declared, but needed test dependency on `zope.component [test]`.

3.7.2 (2010-04-30)
------------------

Expand Down
16 changes: 11 additions & 5 deletions setup.py
Expand Up @@ -16,11 +16,17 @@
# When developing and releasing this package, please follow the documented
# Zope Toolkit policies as described by this documentation.
##############################################################################
"""Setup for zope.sendmail package
"""
"""Setup for zope.sendmail package"""

from setuptools import setup, find_packages


tests_require=[
'zope.security',
'zope.component [test]',
]


setup(name='zope.sendmail',
version = '3.8.0dev',
url='http://pypi.python.org/pypi/zope.sendmail',
Expand All @@ -35,14 +41,14 @@
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['zope',],
tests_require=['zope.security'],
extras_require=dict(test=['zope.security']),
tests_require=tests_require,
extras_require=dict(test=tests_require),
install_requires=['setuptools',
'transaction',
'zope.i18nmessageid',
'zope.interface',
'zope.schema',
# it's only needed for vocabulary and zcml
# it's only needed for vocabulary, zcml and tests
'zope.component>=3.8.0',
# these are only needed for zcml
'zope.configuration',
Expand Down

0 comments on commit 6649e0f

Please sign in to comment.