1298192Sdelphij# coding: utf-8
2267843Sdelphij
3298192Sdelphijfrom __future__ import unicode_literals
4298192Sdelphij
5298192Sdelphijfrom setuptools import setup
6298192Sdelphij
7298192Sdelphij
8298192Sdelphijsetup(name='file-magic',
9298192Sdelphij      version='0.3.0',
10298192Sdelphij      author='Reuben Thomas, ��lvaro Justen',
11298192Sdelphij      author_email='rrt@sc3d.org, alvarojusten@gmail.com',
12298192Sdelphij      url='https://github.com/file/file',
13298192Sdelphij      license='BSD',
14298192Sdelphij      description='(official) libmagic Python bindings',
15298192Sdelphij      py_modules=['magic'],
16298192Sdelphij      test_suite='tests',
17298192Sdelphij      classifiers = [
18298192Sdelphij          'Intended Audience :: Developers',
19298192Sdelphij          'License :: OSI Approved :: BSD License',
20298192Sdelphij          'Natural Language :: English',
21298192Sdelphij          'Topic :: Software Development :: Libraries :: Python Modules',
22298192Sdelphij      ])
23