Skip to content

Commit

Permalink
garden changelog and add dev and docs aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdonc committed Jul 10, 2012
1 parent c8c1cbf commit 724ec60
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CHANGES.txt
@@ -1,11 +1,19 @@
0.7 (unreleased)
----------------

- Python 3.2 compatibility.

- Dropped Jython support (may be re-added after Jython releases a 2.7-
compatible version).

- Dropped Python 2.5 support.

- Made compatible with zope.interface 4.0.0 (symptom: ``TypeError: Class
advice impossible in Python3. Use the @implementer class decorator
instead.`` when run under Python 2 or *or* Python 3)

- Add ``dev`` and ``docs`` setup.py aliases.

0.6.1 (2011-11-19)
------------------

Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Expand Up @@ -8,3 +8,6 @@ nocapture=1
cover-package=pyramid_beaker
cover-erase=1

[aliases]
dev = develop easy_install pyramid_beaker[testing]
docs = develop easy_install pyramid_beaker[docs]
14 changes: 14 additions & 0 deletions setup.py
Expand Up @@ -27,6 +27,16 @@

requires = ['pyramid', 'beaker']

docs_extras = [
'Sphinx',
'docutils',
]

testing_extras = [
'nose',
'coverage',
]

setup(name='pyramid_beaker',
version='0.6.1',
description='Beaker session factory backend for Pyramid',
Expand All @@ -53,6 +63,10 @@
zip_safe=False,
tests_require = requires,
install_requires = requires,
extras_require = {
'testing':testing_extras,
'docs':docs_extras,
},
test_suite="pyramid_beaker",
)

0 comments on commit 724ec60

Please sign in to comment.