Skip to content

Commit

Permalink
Nest into Github.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Dec 24, 2014
1 parent a35cd7f commit f6e076a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions CHANGES.txt → CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ Changelog
2.0.0 (unreleased)
------------------

- Replaced deprecated ``zope.interface.implements`` usage with equivalent
``zope.interface.implementer`` decorator.
- Add support for Python 3.3

- Dropped support for Python 2.4 and 2.5.
- Replace deprecated ``zope.interface.implements`` usage with equivalent
``zope.interface.implementer`` decorator.

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


1.0.0 (2009-12-31)
Expand Down
File renamed without changes.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,18 @@
from setuptools import setup, find_packages

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.login',
version = '2.0.0a1',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
description='Login helpers for zope.publisher / authentication.',
long_description=(
read('README.txt')
read('README.rst')
+ '\n' +
read('CHANGES.txt')
read('CHANGES.rst')
),
keywords = "zope login authentication",
classifiers = [
Expand Down

0 comments on commit f6e076a

Please sign in to comment.