Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
thefunny42 committed Jun 11, 2015
1 parent bf7f253 commit e90a470
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions buildout.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ versions = versions
extensions =
mr.developer
auto-checkout =
grokcore.site
grokcore.catalog

[versions]
grok =
grokcore.site = 1.7
grokcore.catalog = 2.1

[interpreter]
recipe = zc.recipe.egg
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from setuptools import setup, find_packages
import os


def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()

Expand Down Expand Up @@ -37,12 +38,12 @@ def read(*rnames):
'Framework :: Zope3',
],
packages=find_packages('src'),
package_dir = {'': 'src'},
include_package_data = True,
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
'grokcore.annotation >= 1.5',
'grokcore.catalog',
'grokcore.catalog >= 2.1',
'grokcore.chameleon >= 1.0',
'grokcore.component >= 2.5',
'grokcore.content >= 1.2',
Expand All @@ -52,7 +53,7 @@ def read(*rnames):
'grokcore.message',
'grokcore.rest >= 1.3',
'grokcore.security[role] >= 1.6',
'grokcore.site >= 1.6.1',
'grokcore.site >= 1.7',
'grokcore.traverser >= 1.1',
'grokcore.view >= 2.8',
'grokcore.viewlet >= 1.10',
Expand Down

0 comments on commit e90a470

Please sign in to comment.