Skip to content

Commit

Permalink
do not require role extra from grokcore.security
Browse files Browse the repository at this point in the history
  • Loading branch information
janwijbrand committed May 2, 2012
1 parent e166e76 commit 3a2586c
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,20 @@ def read(*rnames):
namespace_packages=['grokcore'],
include_package_data = True,
zip_safe=False,
install_requires=['setuptools',
'grokcore.component >= 2.5dev',
'grokcore.security[role] >= 1.6dev',
'grokcore.view >= 2.2',
'martian >= 0.13',
'zope.viewlet',
'zope.contentprovider',
'zope.browserpage',
'zope.component',
'zope.interface',
'zope.publisher',
'zope.security',
],
install_requires=[
'setuptools',
'grokcore.component >= 2.5',
'grokcore.security >= 1.6',
'grokcore.view >= 2.7',
'martian >= 0.14',
'zope.viewlet',
'zope.contentprovider',
'zope.browserpage',
'zope.component',
'zope.interface',
'zope.publisher',
'zope.security',
],
tests_require=tests_require,
extras_require={'test': tests_require},
)

0 comments on commit 3a2586c

Please sign in to comment.