Navigation Menu

Skip to content

Commit

Permalink
declare all dependencies in setup.py to resolve a dependency problem …
Browse files Browse the repository at this point in the history
…in test setups
  • Loading branch information
thet committed Mar 28, 2012
1 parent bb23160 commit 9847b13
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGES.txt
Expand Up @@ -4,6 +4,9 @@ Changelog
1.0.3 (unreleased)
------------------

* Declare all dependencies in setup.py.
[thet]

* Add a "today" date operator
[esteele]

Expand Down
21 changes: 20 additions & 1 deletion setup.py
Expand Up @@ -23,10 +23,29 @@
zip_safe=False,
install_requires=[
'setuptools',
'plone.app.registry>=1.1dev',
'DateTime',
'Products.CMFCore',
'Products.CMFPlone',
'plone.app.contentlisting',
'plone.app.layout',
'plone.app.registry>=1.1dev',
'plone.app.vocabularies',
'plone.registry',
'zope.component',
'zope.dottedname',
'zope.globalrequest',
'zope.i18n',
'zope.i18nmessageid',
'zope.interface',
'zope.publisher',
'zope.schema',
],
extras_require={
'test': [
'collective.testcaselayer',
'Products.PloneTestCase',
]
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
Expand Down

0 comments on commit 9847b13

Please sign in to comment.