Commit a548f168 authored by Hanno Schlichting's avatar Hanno Schlichting

Reformat the changelog and include it into the long description

parent 5b6f4ec8
This diff is collapsed.
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
############################################################################## ##############################################################################
"""Setup for the Acquisition egg package """Setup for the Acquisition egg package
""" """
import os
from setuptools import setup, find_packages, Extension from setuptools import setup, find_packages, Extension
EXTENSIONCLASS_INCLUDEDIRS = ['include', 'src'] EXTENSIONCLASS_INCLUDEDIRS = ['include', 'src']
...@@ -39,6 +40,9 @@ setup(name='Zope2', ...@@ -39,6 +40,9 @@ setup(name='Zope2',
description='Zope2 application server / web framework', description='Zope2 application server / web framework',
author='Zope Corporation and Contributors', author='Zope Corporation and Contributors',
author_email='zope-dev@zope.org', author_email='zope-dev@zope.org',
long_description=open("README.txt").read() + "\n" +
open(os.path.join("doc", "CHANGES.txt")).read(),
long_description='', long_description='',
packages=find_packages('src'), packages=find_packages('src'),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment