Skip to content

Commit

Permalink
Declare Python-3 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
wosc committed Nov 14, 2019
1 parent 0d658b5 commit cbcf9cc
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions setup.py
Expand Up @@ -17,7 +17,7 @@

setup(
name="zc.table",
version='0.9.1dev',
version='0.10.0.dev0',
url="http://pypi.python.org/pypi/zc.table/",
install_requires=[
'setuptools',
Expand Down Expand Up @@ -62,7 +62,16 @@
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Framework :: Zope :: 3'],
'Framework :: Zope :: 3'
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
test_suite='zc.table.tests.test_suite',
zip_safe=False,
)

0 comments on commit cbcf9cc

Please sign in to comment.