Skip to content

Commit

Permalink
correct changelog and add trove classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
hannosch committed May 4, 2013
1 parent f6b7f40 commit 08c8cb5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
3 changes: 1 addition & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ Changelog

- Add support for `__contains__`.

- Rewrite `Record` class as a new-style pure Python class using `__slots__`
instead of an extension class.
- Provide an Python reference implementation using `__slots__`.

- Rewrite tests as unit tests.

Expand Down
16 changes: 16 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,22 @@
open('CHANGES.rst').read(),
packages=find_packages('src'),
package_dir={'': 'src'},
classifiers=[
"Development Status :: 6 - Mature",
"Environment :: Web Environment",
"Framework :: Zope2",
"License :: OSI Approved :: Zope Public License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
# "Programming Language :: Python :: 3",
# "Programming Language :: Python :: 3.2",
# "Programming Language :: Python :: 3.3",
"Programming Language :: Python :: Implementation :: CPython",
# "Programming Language :: Python :: Implementation :: PyPy",
],
ext_modules=ext_modules,
install_requires=['ExtensionClass'],
include_package_data=True,
Expand Down

0 comments on commit 08c8cb5

Please sign in to comment.