Skip to content

Commit

Permalink
- Beaker is now part of "extras" in
Browse files Browse the repository at this point in the history
  setup.py instead of "install_requires".
  This to produce a lighter weight install
  for those who don't use the caching
  as well as to conform to Pyramid
  deployment practices.  [ticket:154]
  • Loading branch information
zzzeek committed Nov 12, 2010
1 parent ec3256d commit 69cf8fe
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
0.3.6
- Beaker is now part of "extras" in
setup.py instead of "install_requires".
This to produce a lighter weight install
for those who don't use the caching
as well as to conform to Pyramid
deployment practices. [ticket:154]

- Fixed missing **extra collection in
setup.py which prevented setup.py
from running 2to3 on install.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
test_suite = "nose.collector",
zip_safe=False,
install_requires=[
'Beaker>=1.1',
'MarkupSafe>=0.9.2',
],
extras_require = {'beaker':['Beaker>=1.1']},
entry_points="""
[python.templating.engines]
mako = mako.ext.turbogears:TGPlugin
Expand Down

0 comments on commit 69cf8fe

Please sign in to comment.