13e41d09dSXin LI# coding: utf-8 2b6cee71dSXin LI 33e41d09dSXin LIfrom __future__ import unicode_literals 43e41d09dSXin LI 53e41d09dSXin LIfrom setuptools import setup 63e41d09dSXin LI 7*2dc4dbb9SEitan Adlerwith open('README.md', 'r') as fh: 8*2dc4dbb9SEitan Adler long_description = fh.read() 9*2dc4dbb9SEitan Adler 103e41d09dSXin LI 113e41d09dSXin LIsetup(name='file-magic', 12*2dc4dbb9SEitan Adler version='0.4.0', 133e41d09dSXin LI author='Reuben Thomas, Álvaro Justen', 143e41d09dSXin LI author_email='rrt@sc3d.org, alvarojusten@gmail.com', 153e41d09dSXin LI url='https://github.com/file/file', 16b6cee71dSXin LI license='BSD', 173e41d09dSXin LI description='(official) libmagic Python bindings', 18*2dc4dbb9SEitan Adler long_description=long_description, 19*2dc4dbb9SEitan Adler long_description_content_type='text/markdown', 203e41d09dSXin LI py_modules=['magic'], 213e41d09dSXin LI test_suite='tests', 223e41d09dSXin LI classifiers = [ 233e41d09dSXin LI 'Intended Audience :: Developers', 243e41d09dSXin LI 'License :: OSI Approved :: BSD License', 253e41d09dSXin LI 'Natural Language :: English', 263e41d09dSXin LI 'Topic :: Software Development :: Libraries :: Python Modules', 273e41d09dSXin LI ]) 28