Drop support for Python < 3.7

Necessary to use sprockets.mixins.mediatype >=2
This commit is contained in:
Andrew Rabert 2018-12-19 20:27:53 -05:00
parent 23d6e449ee
commit 091dd00b44

View file

@ -34,18 +34,12 @@ setuptools.setup(
'Development Status :: 3 - Alpha', 'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', 'Natural Language :: English',
'Operating System :: OS Independent',
'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 :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
python_requires='>=3.7',
packages=setuptools.find_packages(),
package_data={'': ['LICENSE', 'README.rst', 'requires/installation.txt']},
include_package_data=True,