1*3e41d09dSXin LI# coding: utf-8 2b6cee71dSXin LI 3*3e41d09dSXin LIfrom __future__ import unicode_literals 4*3e41d09dSXin LI 5*3e41d09dSXin LIfrom setuptools import setup 6*3e41d09dSXin LI 7*3e41d09dSXin LI 8*3e41d09dSXin LIsetup(name='file-magic', 9*3e41d09dSXin LI version='0.3.0', 10*3e41d09dSXin LI author='Reuben Thomas, Álvaro Justen', 11*3e41d09dSXin LI author_email='rrt@sc3d.org, alvarojusten@gmail.com', 12*3e41d09dSXin LI url='https://github.com/file/file', 13b6cee71dSXin LI license='BSD', 14*3e41d09dSXin LI description='(official) libmagic Python bindings', 15*3e41d09dSXin LI py_modules=['magic'], 16*3e41d09dSXin LI test_suite='tests', 17*3e41d09dSXin LI classifiers = [ 18*3e41d09dSXin LI 'Intended Audience :: Developers', 19*3e41d09dSXin LI 'License :: OSI Approved :: BSD License', 20*3e41d09dSXin LI 'Natural Language :: English', 21*3e41d09dSXin LI 'Topic :: Software Development :: Libraries :: Python Modules', 22*3e41d09dSXin LI ]) 23