Tres Seaver
2011-09-28 d03c94f1fab0697990a6baaee02cf649dcd86c4f
setup.py
@@ -1,6 +1,6 @@
##############################################################################
#
# Copyright (c) 2007 Agendaless Consulting and Contributors.
# Copyright (c) 2007-2009 Agendaless Consulting and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the BSD-like license at
@@ -14,19 +14,14 @@
import os
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
__version__ = '1.0.12+'
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
setup(name='repoze.who',
      version=__version__,
      version='2.0',
      description=('repoze.who is an identification and authentication '
                   'framework for WSGI.'),
      long_description='\n\n'.join([README, CHANGES]),
@@ -57,5 +52,5 @@
      predicate = repoze.who.restrict:make_predicate_restriction
      authenticated = repoze.who.restrict:make_authenticated_restriction
      """
      )
)