Remove Python 3.2 classifier
Blame raydeo for this also being a partial pep8 commit...
This commit is contained in:
36
setup.py
36
setup.py
@@ -43,21 +43,20 @@ setup(name='colander',
|
|||||||
version='1.2',
|
version='1.2',
|
||||||
description=('A simple schema-based serialization and deserialization '
|
description=('A simple schema-based serialization and deserialization '
|
||||||
'library'),
|
'library'),
|
||||||
long_description=README + '\n\n' + CHANGES,
|
long_description=README + '\n\n' + CHANGES,
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Intended Audience :: Developers",
|
"Intended Audience :: Developers",
|
||||||
"Programming Language :: Python",
|
"Programming Language :: Python",
|
||||||
"Programming Language :: Python :: 2",
|
"Programming Language :: Python :: 2",
|
||||||
"Programming Language :: Python :: 2.6",
|
"Programming Language :: Python :: 2.6",
|
||||||
"Programming Language :: Python :: 2.7",
|
"Programming Language :: Python :: 2.7",
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Programming Language :: Python :: 3.2",
|
"Programming Language :: Python :: 3.3",
|
||||||
"Programming Language :: Python :: 3.3",
|
"Programming Language :: Python :: 3.4",
|
||||||
"Programming Language :: Python :: 3.4",
|
"Programming Language :: Python :: 3.5",
|
||||||
"Programming Language :: Python :: 3.5",
|
"Programming Language :: Python :: Implementation :: CPython",
|
||||||
"Programming Language :: Python :: Implementation :: CPython",
|
"Programming Language :: Python :: Implementation :: PyPy",
|
||||||
"Programming Language :: Python :: Implementation :: PyPy",
|
],
|
||||||
],
|
|
||||||
keywords='serialize deserialize validate schema validation',
|
keywords='serialize deserialize validate schema validation',
|
||||||
author="Agendaless Consulting",
|
author="Agendaless Consulting",
|
||||||
author_email="pylons-discuss@googlegroups.com",
|
author_email="pylons-discuss@googlegroups.com",
|
||||||
@@ -66,11 +65,10 @@ setup(name='colander',
|
|||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
install_requires = requires,
|
install_requires=requires,
|
||||||
test_suite="colander",
|
test_suite="colander",
|
||||||
extras_require = {
|
extras_require={
|
||||||
'testing':testing_extras,
|
'testing': testing_extras,
|
||||||
'docs':docs_extras,
|
'docs': docs_extras,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user