Skip to content

Commit

Permalink
Nest into Github.
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
tseaver committed Dec 27, 2014
1 parent 52139a5 commit 318a27f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
12 changes: 6 additions & 6 deletions CHANGES.txt → CHANGES.rst
@@ -1,21 +1,21 @@
zope.processlifetime Changelog
==============================
Changes
=======

2.0.1 (unreleased)
------------------

- Nothing changed yet.
- Add support for testing on Travis.


2.0.0 (2013-02-22)
------------------

- Replaced deprecated ``zope.interface.implements`` usage with equivalent
- Replace deprecated ``zope.interface.implements`` usage with equivalent
``zope.interface.implementer`` decorator.

- Dropped support for Python 2.4 and 2.5.
- Add support for Python 3.2 and 3.3

- Added support for Python 3.2 and 3.3
- Drop support for Python 2.4 and 2.5.



Expand Down
6 changes: 3 additions & 3 deletions README.txt → README.rst
@@ -1,7 +1,7 @@
zope.processlifetime README
===========================
``zope.processlifetime``
========================

This package provides interfaces / implementations for events relative to
the lifetime of a server process (startup, database opening, etc.)

It is derived from Zope 3.4's 'zope.app.appsetup'.
It is derived from Zope 3.4's ``zope.app.appsetup``.
7 changes: 4 additions & 3 deletions setup.py
Expand Up @@ -17,16 +17,17 @@
from setuptools import find_packages, setup

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

setup(
name='zope.processlifetime',
version='2.0.1.dev0',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
description="Zope process lifetime events",
long_description=(read('README.txt') + '\n\n' +
read('CHANGES.txt')),
long_description=(read('README.rst') + '\n\n' +
read('CHANGES.rst')),
license='ZPL 2.1',
keywords="zope process lifetime events",
classifiers=[
Expand Down

0 comments on commit 318a27f

Please sign in to comment.