diff options
| author | Adam Hupp <adam@hupp.org> | 2020-01-12 22:51:38 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-12 22:51:38 -0800 |
| commit | 5f00a4e0045f940dd3857afda3949b8fb271087c (patch) | |
| tree | 2b9c8bfc0ffc70890a04eb9d9fe4bb8b34a8a31d /setup.py | |
| parent | 0cc14ee1dcd7e53efc74cb2e00df89e630b3d0c5 (diff) | |
| parent | 140e2af173c9e8ef18e1936968f926a05c09e9ab (diff) | |
| download | python-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.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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', ], ) |
