Skip to content

Commit

Permalink
Get ready for 3.4.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
strichter committed Oct 24, 2007
1 parent 2f9f23f commit 24a934c
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 10 deletions.
8 changes: 8 additions & 0 deletions CHANGES.txt
@@ -0,0 +1,8 @@
=======
CHANGES
=======

3.4.0 (2007-10-23)
------------------

- Initial release independent of the main Zope tree.
3 changes: 3 additions & 0 deletions README.txt
@@ -0,0 +1,3 @@
This package provides a debugger for the Zope publisher. After Zope is
isntantiated, it drops the user into an interactive Python shell where the
full Zope environment and the database root are available.
3 changes: 1 addition & 2 deletions buildout.cfg
@@ -1,7 +1,6 @@
[buildout]
develop = .
develop = .
parts = test
find-links = http://download.zope.org/distribution/

[test]
recipe = zc.recipe.testrunner
Expand Down
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

29 changes: 23 additions & 6 deletions setup.py
Expand Up @@ -15,18 +15,35 @@
$Id$
"""

import os
from setuptools import setup, find_packages

from setuptools import setup, find_packages, Extension
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()

setup(name='zope.app.debug',
version = '3.4.0b1',
url='http://svn.zope.org/zope.app.debug',
license='ZPL 2.1',
description='Zope debug',
version = '3.4.0',
author='Zope Corporation and Contributors',
author_email='zope3-dev@zope.org',
description='Zope Debug Mode',
long_description=(
read('README.txt')
+ '\n\n' +
read('CHANGES.txt')
),
keywords = "zope3 webdav",
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Framework :: Zope3'],
url='http://cheeseshop.python.org/pypi/zope.app.debug',
license='ZPL 2.1',
packages=find_packages('src'),
package_dir = {'': 'src'},
namespace_packages=['zope', 'zope.app'],
Expand Down

0 comments on commit 24a934c

Please sign in to comment.