Skip to content

Commit

Permalink
- clean up setup.py and remove support for setup.py test (fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dataflake committed Apr 2, 2019
1 parent 3b11531 commit 290a1bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
3 changes: 3 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Changelog
2.0b6 (unreleased)
------------------

- clean up ``setup.py`` and remove support for ``setup.py test``
(`#73 <https://github.com/zopefoundation/Products.GenericSetup/issues/73>`_)

- add support for unicode data in ``writeDataFile``
(`#79 <https://github.com/zopefoundation/Products.GenericSetup/issues/79>`_)

Expand Down
15 changes: 1 addition & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,32 +60,19 @@ def _package_doc(name):
namespace_packages=['Products'],
zip_safe=False,
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
setup_requires=['eggtestinfo',
],
install_requires=[
'setuptools',
'six',
'Zope >= 4.0b4',
'zope.interface >= 3.8',
'five.localsitemanager',
'Products.PythonScripts',
'Products.ZCatalog',
],
tests_require=[
'zope.testrunner',
],
extras_require=dict(
docs=[
'Sphinx',
'repoze.sphinx.autointerface',
],
docs=['Sphinx', 'repoze.sphinx.autointerface'],
),
test_loader="zope.testrunner.eggsupport:SkipLayers",
test_suite="Products.GenericSetup.tests",
entry_points="""
[zope2.initialize]
Products.GenericSetup = Products.GenericSetup:initialize
[distutils.commands]
ftest = zope.testing.testrunner.eggsupport:ftest
""",
)

0 comments on commit 290a1bb

Please sign in to comment.