1# coding: utf-8 2 3from __future__ import unicode_literals 4 5from setuptools import setup 6 7with open('README.md', 'r') as fh: 8 long_description = fh.read() 9 10 11setup(name='file-magic', 12 version='0.4.0', 13 author='Reuben Thomas, Álvaro Justen', 14 author_email='rrt@sc3d.org, alvarojusten@gmail.com', 15 url='https://github.com/file/file', 16 license='BSD', 17 description='(official) libmagic Python bindings', 18 long_description=long_description, 19 long_description_content_type='text/markdown', 20 py_modules=['magic'], 21 test_suite='tests', 22 classifiers = [ 23 'Intended Audience :: Developers', 24 'License :: OSI Approved :: BSD License', 25 'Natural Language :: English', 26 'Topic :: Software Development :: Libraries :: Python Modules', 27 ]) 28