Skip to content
This repository has been archived by the owner on Dec 17, 2020. It is now read-only.

Commit

Permalink
- Updated test dependencies so tests run with current z3c.form vers…
Browse files Browse the repository at this point in the history
…ions.

- Added doctests to ``long_description`` so they show up on PyPI.
  • Loading branch information
Michael Howitz committed Oct 28, 2010
1 parent 74bdd69 commit 3793c8c
Show file tree
Hide file tree
Showing 3 changed files with 508 additions and 498 deletions.
74 changes: 41 additions & 33 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,33 +1,41 @@
=======
CHANGES
=======

0.5.3dev (unreleased)
---------------------

- ...

there is still an issue in README.txt sample, the samples are using
nested <form> tags. Fix the sample and use real subform templates.

- use registerType from zope.browserpage instead from zope.app.pagetemplate

- adjust test output


0.5.2 (2009-10-19)
------------------

- Fix my bug introduced in 0.5.1


0.5.1 (2009-10-19)
------------------

- Added ``allowEdit`` property to ``SubFormTable``


0.5.0 (2009-02-22)
------------------

- Initial Release
========
Issues
========

- There is still an issue in README.txt sample, the samples are using nested
``<form>`` tags. Fix the sample and use real subform templates.


=======
CHANGES
=======

0.5.3dev (unreleased)
---------------------

- Using ``registerType`` from `zope.browserpage` instead from
`zope.app.pagetemplate`

- Adjusted test output.

- Updated test dependencies so tests run with current `z3c.form` versions.

- Added doctests to ``long_description`` so they show up on PyPI.


0.5.2 (2009-10-19)
------------------

- Fixed my bug introduced in 0.5.1.


0.5.1 (2009-10-19)
------------------

- Added ``allowEdit`` property to ``SubFormTable``


0.5.0 (2009-02-22)
------------------

- Initial release.
14 changes: 8 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
from setuptools import setup, find_packages

def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
content = open(os.path.join(os.path.dirname(__file__), *rnames)).read()
return content + '\n\n'

setup (
name='z3c.tabular',
Expand All @@ -28,9 +29,10 @@ def read(*rnames):
author_email = "zope3-dev@zope.org",
description = "Table with form support based on z3c.form and z3c.table for Zope3",
long_description=(
read('README.txt')
+ '\n\n' +
read('CHANGES.txt')
read('README.txt') +
'.. contents::\n\n' +
read('CHANGES.txt') +
read('src', 'z3c', 'tabular', 'README.txt')
),
license = "ZPL 2.1",
keywords = "zope3 z3c tabular data form table contents",
Expand All @@ -51,11 +53,11 @@ def read(*rnames):
namespace_packages = ['z3c'],
extras_require = dict(
test = [
'z3c.form[test]',
'z3c.macro',
'z3c.table',
'z3c.testing',
'zope.app.testing',
'zope.app.publisher',
'zope.app.testing',
'zope.browserpage',
'zope.publisher',
'zope.testing',
Expand Down
Loading

0 comments on commit 3793c8c

Please sign in to comment.