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