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 37665f9 commit 2b6f6ff
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
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,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 @@ -44,9 +45,9 @@ def alltests():
author_email='zope-dev@zope.org',
description='Zope applicationcontrol',
long_description=(
read('README.txt')
read('README.rst')
+ '\n\n' +
read('CHANGES.txt')
read('CHANGES.rst')
),
license='ZPL 2.1',
keywords = "zope ztk application control",
Expand Down

0 comments on commit 2b6f6ff

Please sign in to comment.