Skip to content

Commit

Permalink
add classifiers and note setuptools dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
hannosch committed Mar 1, 2013
1 parent 393fade commit f4a209d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions setup.py
Expand Up @@ -33,6 +33,24 @@
long_description=README + '\n\n' + CHANGES,
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",
],
install_requires=[
'setuptools',
],
test_suite='ZopeUndo.tests',
include_package_data=True,
zip_safe=False,
Expand Down

0 comments on commit f4a209d

Please sign in to comment.