xref: /netbsd-src/external/bsd/file/dist/python/setup.py (revision 006f800885986050e952d0c8ef3fa1acaaa34e45)
1ae9cfef6Schristos# coding: utf-8
21b108b8bSchristos
3ae9cfef6Schristosfrom __future__ import unicode_literals
4ae9cfef6Schristos
5ae9cfef6Schristosfrom setuptools import setup
6ae9cfef6Schristos
7*006f8008Schristoswith open('README.md', 'r') as fh:
8*006f8008Schristos      long_description = fh.read()
9*006f8008Schristos
10ae9cfef6Schristos
11ae9cfef6Schristossetup(name='file-magic',
12*006f8008Schristos      version='0.4.0',
13ae9cfef6Schristos      author='Reuben Thomas, Álvaro Justen',
14ae9cfef6Schristos      author_email='rrt@sc3d.org, alvarojusten@gmail.com',
15ae9cfef6Schristos      url='https://github.com/file/file',
161b108b8bSchristos      license='BSD',
17ae9cfef6Schristos      description='(official) libmagic Python bindings',
18*006f8008Schristos      long_description=long_description,
19*006f8008Schristos      long_description_content_type='text/markdown',
20ae9cfef6Schristos      py_modules=['magic'],
21ae9cfef6Schristos      test_suite='tests',
22ae9cfef6Schristos      classifiers = [
23ae9cfef6Schristos          'Intended Audience :: Developers',
24ae9cfef6Schristos          'License :: OSI Approved :: BSD License',
25ae9cfef6Schristos          'Natural Language :: English',
26ae9cfef6Schristos          'Topic :: Software Development :: Libraries :: Python Modules',
27ae9cfef6Schristos      ])
28