Skip to content

Commit

Permalink
Merge 8e42baa into 3b7283f
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Jul 12, 2019
2 parents 3b7283f + 8e42baa commit 3c02d1d
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 28 deletions.
19 changes: 0 additions & 19 deletions README.txt → CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,22 +1,3 @@
***********************************************
Zope3 Application, Instance and Offline Recipes
***********************************************

Recipes for creating Zope 3 instances with distinguishing features:

- Don't use a skeleton

- Separates application and instance definition

- Don't support package-includes

- Support offline instance.

Unfortunately, partial Windows support at this time. It works but it's alpha.

.. contents::


Releases
********

Expand Down
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
include *.rst
include *.py
include buildout.cfg
recursive-include zc *.txt
recursive-include zc *.rst
18 changes: 18 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
***********************************************
Zope3 Application, Instance and Offline Recipes
***********************************************

Recipes for creating Zope 3 instances with distinguishing features:

- Don't use a skeleton

- Separates application and instance definition

- Don't support package-includes

- Support offline instance.

Unfortunately, partial Windows support at this time. It works but it's alpha.

.. contents::

11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,15 @@ def read(*rnames):
keywords="zope3 buildout",
url='https://github.com/zopefoundation/%s' % name,
long_description=(
read('README.txt')
read('README.rst')
+ '\n' +
read('CHANGES.rst')
+ '\n' +
'Detailed Documentation\n'
'**********************\n'
+ '\n' +
read('zc', 'zope3recipes', 'README.txt')
+ '\n' +
'Download\n'
'**********************\n'
),
read('zc', 'zope3recipes', 'README.rst')
),
packages=find_packages('.'),
include_package_data=True,
namespace_packages=['zc'],
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions zc/zope3recipes/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def test_suite():
if sys.platform[:3].lower() == "win":
suite.addTest(
doctest.DocFileSuite(
'WINDOWS.txt',
'WINDOWS.rst',
setUp=setUp,
tearDown=zc.buildout.testing.buildoutTearDown,
checker=checker,
Expand All @@ -329,7 +329,7 @@ def test_suite():
)
suite.addTest(
doctest.DocFileSuite(
'README.txt',
'README.rst',
setUp=setUp,
tearDown=zc.buildout.testing.buildoutTearDown,
checker=checker,
Expand Down

0 comments on commit 3c02d1d

Please sign in to comment.