Skip to content

Commit

Permalink
Merge pull request #33 from zopefoundation/issue32
Browse files Browse the repository at this point in the history
Add keywords and fix manifest.in and CHANGES.rst
  • Loading branch information
freddrake committed Jun 22, 2017
2 parents 648fc67 + df85665 commit 8d09275
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
8 changes: 5 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ Change History for ZConfig
- Scripts ``zconfig`` (for schema validation) and
``zconfig_schema2html`` are ported to Python 3.

- A new ``ZConfig.sphinx`` Sphinx extension facilitates automatically
documenting ZConfig components using their description and examples
in Sphinx documentation.
- A new ``ZConfig.sphinx`` `Sphinx extension
<https://zconfig.readthedocs.io/en/latest/documenting-components.html#documenting-components>`_
facilitates automatically documenting ZConfig components using their
description and examples in Sphinx documentation. See
https://github.com/zopefoundation/ZConfig/pull/25.

- Simplify internal schema processing of max and min occurrence
values. See https://github.com/zopefoundation/ZConfig/issues/15.
Expand Down
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
include *.rst
include *.txt
include *.yml
include .travis.yml
include .coveragerc
include tox.ini
include bootstrap.py
include buildout.cfg
Expand All @@ -8,6 +11,7 @@ recursive-include ZConfig *
recursive-include doc *.py
recursive-include doc *.rst
recursive-include doc *.dtd
recursive-include doc *.conf
recursive-include doc Makefile
recursive-include doc make.bat

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ def alltests():
author_email="fred@fdrake.net",
maintainer="Zope Foundation and Contributors",
description="Structured Configuration Library",
keywords='configuration structured simple flexible typed hierarchy logging',
long_description=README + "\n\n" + CHANGES,
license="ZPL 2.1",
url="https://github.com/zopefoundation/ZConfig/",
Expand Down Expand Up @@ -79,7 +80,7 @@ def alltests():
'Programming Language :: Python :: Implementation :: PyPy',
'Operating System :: OS Independent',
'Topic :: Software Development',
],
],
# Support for 'setup.py test' when setuptools is available:
test_suite='__main__.alltests',
tests_require=tests_require,
Expand Down

0 comments on commit 8d09275

Please sign in to comment.