Skip to content

Commit

Permalink
fix up changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
janwijbrand committed Jan 31, 2018
1 parent c3b8b8c commit 9baf356
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
File renamed without changes.
1 change: 1 addition & 0 deletions MANIFEST.in
@@ -1,5 +1,6 @@
include *.py
include *.txt
include *.rst
include buildout.cfg
include test.ini
include .coveragerc
Expand Down
File renamed without changes.
13 changes: 12 additions & 1 deletion setup.py
@@ -1,13 +1,24 @@
import os.path
from setuptools import setup, find_packages


def read(*rnames):
with open(os.path.join(os.path.dirname(__file__), *rnames)) as f:
return f.read()


setup(name='z3c.evalexception',
version='3.0.dev0',
license='ZPL 2.1',
description="Debugging middlewares for zope.publisher-based web "
"applications",
author='Philipp von Weitershausen',
author_email='philipp@weitershausen.de',
long_description=open('README.txt').read(),
long_description=(
read('README.rst')
+ '\n\n' +
read('CHANGES.rst')
),
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
Expand Down

0 comments on commit 9baf356

Please sign in to comment.