diff options
author | Xin LI <delphij@FreeBSD.org> | 2016-04-18 04:43:03 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2016-04-18 04:43:03 +0000 |
commit | 196a380938cafa8bcc6ffcfd739c093a8673c712 (patch) | |
tree | 8777b975692116ac553664f46dd5e5c190ba5332 /python/setup.py | |
parent | 1e0fd9ee49c0f1156dc8531655f1613adeb134c0 (diff) |
Diffstat (limited to 'python/setup.py')
-rw-r--r-- | python/setup.py | 32 |
1 files changed, 22 insertions, 10 deletions
diff --git a/python/setup.py b/python/setup.py index 2c3b527bb8906..24ae182fff6b8 100644 --- a/python/setup.py +++ b/python/setup.py @@ -1,10 +1,22 @@ -# Python distutils build script for magic extension -from distutils.core import setup - -setup(name = 'Magic file extensions', - version = '0.2', - author = 'Reuben Thomas', - author_email = 'rrt@sc3d.org', - license = 'BSD', - description = 'libmagic Python bindings', - py_modules = ['magic']) +# coding: utf-8 + +from __future__ import unicode_literals + +from setuptools import setup + + +setup(name='file-magic', + version='0.3.0', + author='Reuben Thomas, Álvaro Justen', + author_email='rrt@sc3d.org, alvarojusten@gmail.com', + url='https://github.com/file/file', + license='BSD', + description='(official) libmagic Python bindings', + py_modules=['magic'], + test_suite='tests', + classifiers = [ + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Natural Language :: English', + 'Topic :: Software Development :: Libraries :: Python Modules', + ]) |