1300899Sdelphij# coding: utf-8
2267843Sdelphij
3300899Sdelphijfrom __future__ import unicode_literals
4300899Sdelphij
5300899Sdelphijfrom setuptools import setup
6300899Sdelphij
7300899Sdelphij
8300899Sdelphijsetup(name='file-magic',
9300899Sdelphij      version='0.3.0',
10300899Sdelphij      author='Reuben Thomas, ��lvaro Justen',
11300899Sdelphij      author_email='rrt@sc3d.org, alvarojusten@gmail.com',
12300899Sdelphij      url='https://github.com/file/file',
13300899Sdelphij      license='BSD',
14300899Sdelphij      description='(official) libmagic Python bindings',
15300899Sdelphij      py_modules=['magic'],
16300899Sdelphij      test_suite='tests',
17300899Sdelphij      classifiers = [
18300899Sdelphij          'Intended Audience :: Developers',
19300899Sdelphij          'License :: OSI Approved :: BSD License',
20300899Sdelphij          'Natural Language :: English',
21300899Sdelphij          'Topic :: Software Development :: Libraries :: Python Modules',
22300899Sdelphij      ])
23