summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Hupp <adam@hupp.org>2016-01-04 08:58:17 -0800
committerAdam Hupp <adam@hupp.org>2016-01-04 08:58:17 -0800
commitd8a89620e7af25e78b21771a810924f2d81a9ed0 (patch)
tree20baff071b509996b90979393410f0d09e9754de
parent28c1e3cc40dcd0c3a2f673810d874664ec826620 (diff)
parent3d7a638573382427a5e9124f8510643465941945 (diff)
downloadpython-magic-d8a89620e7af25e78b21771a810924f2d81a9ed0.tar.gz
Merge pull request #99 from koobs/patch-1
Match license= to LICENSE, Add Python 2 to Trove
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 1ab5a3b..01c089e 100644
--- a/setup.py
+++ b/setup.py
@@ -15,12 +15,13 @@ identification library. It makes use of the local magic database and
supports both textual and MIME-type output.
""",
keywords="mime magic file",
- license="PSF",
+ license="MIT",
test_suite='test',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
+ 'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)