diff --git a/setup.py b/setup.py index 3b84e4c..7abd44d 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ author="Artefactual Systems", author_email="info@artefactual.com", license="AGPL 3", - version="0.5.0", + version="0.6.0", packages=[ "agentarchives", "agentarchives.archivesspace", @@ -15,13 +15,16 @@ "agentarchives.atom", ], install_requires=["requests>=2,<3", "mysqlclient>=1.3,<2"], - python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", + python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", classifiers=[ "Development Status :: 4 - Beta", "License :: OSI Approved :: GNU Affero General Public License v3", "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 :: 3.7", + "Programming Language :: Python :: 3.8", ], )