summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorAdam Hupp <adam@hupp.org>2020-01-12 22:51:38 -0800
committerGitHub <noreply@github.com>2020-01-12 22:51:38 -0800
commit5f00a4e0045f940dd3857afda3949b8fb271087c (patch)
tree2b9c8bfc0ffc70890a04eb9d9fe4bb8b34a8a31d /setup.py
parent0cc14ee1dcd7e53efc74cb2e00df89e630b3d0c5 (diff)
parent140e2af173c9e8ef18e1936968f926a05c09e9ab (diff)
downloadpython-magic-5f00a4e0045f940dd3857afda3949b8fb271087c.tar.gz
Merge pull request #201 from hugovk/add-3.7-3.8
Add support for Python 3.7 and 3.8
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 1e0cd8c..eabeb0e 100644
--- a/setup.py
+++ b/setup.py
@@ -24,6 +24,7 @@ setup(name='python-magic',
keywords="mime magic file",
license="MIT",
test_suite='test',
+ python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
@@ -32,6 +33,8 @@ setup(name='python-magic',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: 3.7',
+ 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
],
)