diff options
author | delphij <delphij@FreeBSD.org> | 2016-04-18 04:43:03 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2016-04-18 04:43:03 +0000 |
commit | 3c98cb6b19e2270fd5235eb16a8ae98de4fb0b5f (patch) | |
tree | 8777b975692116ac553664f46dd5e5c190ba5332 /python/setup.py | |
parent | 7343e0bab7e3abacbbaf76b201c61cd6c76f89b3 (diff) | |
download | FreeBSD-src-3c98cb6b19e2270fd5235eb16a8ae98de4fb0b5f.zip FreeBSD-src-3c98cb6b19e2270fd5235eb16a8ae98de4fb0b5f.tar.gz |
Vendor import of file 4.26.
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 2c3b527..24ae182 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', + ]) |