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 26, 2014
1 parent f892b77 commit 49d830f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
7 changes: 4 additions & 3 deletions setup.py
Expand Up @@ -17,7 +17,8 @@
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()

def alltests():
import os
Expand All @@ -40,7 +41,7 @@ def alltests():
author_email='zope-dev@zope.org',
description='Definition of authentication basics for the Zope Framework',
long_description=(
read('README.txt')
read('README.rst')
+ '\n\n' +
'Detailed Documentation\n' +
'======================\n'
Expand All @@ -49,7 +50,7 @@ def alltests():
+ '\n\n' +
read('src', 'zope', 'authentication', 'principalterms.txt')
+ '\n\n' +
read('CHANGES.txt')
read('CHANGES.rst')
),
keywords = "zope security authentication",
classifiers = [
Expand Down

0 comments on commit 49d830f

Please sign in to comment.