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 7ecdbf8 commit 9cf6bbc
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 @@ -22,15 +22,16 @@
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.mimetype',
version='2.0.0a2.dev0',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
description = "A simple package for working with MIME content types",
long_description=(
read('README.txt')
read('README.rst')
+ '\n\n' +
'.. contents::'
+ '\n\n' +
Expand All @@ -54,7 +55,7 @@ def read(*rnames):
+ '\n\n' +
read('src', 'zope', 'mimetype', 'utils.txt')
+ '\n\n' +
read('CHANGES.txt')
read('CHANGES.rst')
),
keywords = "file content mimetype",
classifiers = [
Expand Down

0 comments on commit 9cf6bbc

Please sign in to comment.