Skip to content

Commit

Permalink
prep for 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdonc committed Jan 18, 2011
1 parent d2e96ff commit 57064a6
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 10 deletions.
7 changes: 4 additions & 3 deletions CHANGES.txt
@@ -1,5 +1,6 @@
Next release
============
0.1 (2011-01-18)
----------------

- Initial release, broken out of Pyramid core.

- ...

13 changes: 13 additions & 0 deletions README.rst
@@ -0,0 +1,13 @@
``pyramid_handlers``
====================

``pyramid_handlers`` is a package which allows Pyramid to largely emulate the
functionality of Pylons 1 "controllers". Handlers are a synthesis of
Pyramid *url dispatch* and method introspection of a view class that makes it
easier to create bundles of view logic which reacts to particular route
patterns.

See `http://docs.pylonsproject.org/projects/pyramid_handlers/dev/
<http://docs.pylonsproject.org/projects/pyramid_handlers/dev/>`_ for
detailed documentation.

6 changes: 3 additions & 3 deletions docs/conf.py
Expand Up @@ -56,13 +56,13 @@

# General substitutions.
project = 'pyramid_handlers'
copyright = '2010, Agendaless Consulting <chrism@plope.com>'
copyright = '2011, Agendaless Consulting <chrism@plope.com>'

# The default replacements for |version| and |release|, also used in various
# other places throughout the built documents.
#
# The short X.Y version.
version = '0.4'
version = '0.1'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down Expand Up @@ -104,7 +104,7 @@
# Add and use Pylons theme
sys.path.append(os.path.abspath('_themes'))
html_theme_path = ['_themes']
html_theme = 'pylons'
html_theme = 'pyramid'

# The style sheet to use for HTML and HTML Help pages. A file of that name
# must exist either in Sphinx' static/ path, or in one of the custom paths
Expand Down
6 changes: 2 additions & 4 deletions setup.py
Expand Up @@ -12,8 +12,6 @@
#
##############################################################################

__version__ = '0.0'

import os
import platform

Expand All @@ -27,7 +25,7 @@
README = CHANGES = ''

install_requires=[
'pyramid', 'pyramid_zcml',
'pyramid>=1.0a10', 'pyramid_zcml',
]

if platform.system() == 'Java':
Expand All @@ -37,7 +35,7 @@
'repoze.sphinx.autointerface']

setup(name='pyramid_handlers',
version=__version__,
version='0.1',
description='Pyramid handlers emulate Pylons 1 controllers',
long_description=README + '\n\n' + CHANGES,
classifiers=[
Expand Down

0 comments on commit 57064a6

Please sign in to comment.