Skip to content

Commit

Permalink
release preps.
Browse files Browse the repository at this point in the history
  • Loading branch information
janwijbrand committed Jan 3, 2018
1 parent b393204 commit 87c2b9b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
4 changes: 1 addition & 3 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,13 @@ Changes
1.6.4 (unreleased)
------------------

- Nothing changed yet.

- Python 3 compatibility.

1.6.3 (2016-01-29)
------------------

- Update tests.


1.6.2 (2012-05-07)
------------------

Expand Down
21 changes: 14 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,28 @@ def read(*rnames):
description='Grok-like configuration for Zope security components',
long_description=long_description,
license='ZPL',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
'Framework :: Zope3',
],
classifiers=['Intended Audience :: Developers',
'Development Status :: 6 - Mature',
'License :: OSI Approved :: Zope Public License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
packages=find_packages('src'),
package_dir = {'': 'src'},
namespace_packages=['grokcore'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'grokcore.component >= 2.1',
'martian >= 0.13',
'setuptools',
'zope.component',
'zope.dottedname',
'zope.interface',
Expand Down

0 comments on commit 87c2b9b

Please sign in to comment.