setup.py 824 B

123456789101112131415161718192021222324252627
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. from setuptools import setup
  4. with open('README.md', 'r') as fh:
  5. long_description = fh.read()
  6. setup(name='file-magic',
  7. version='0.4.0',
  8. author='Reuben Thomas, Álvaro Justen',
  9. author_email='rrt@sc3d.org, alvarojusten@gmail.com',
  10. url='https://github.com/file/file',
  11. license='BSD',
  12. description='(official) libmagic Python bindings',
  13. long_description=long_description,
  14. long_description_content_type='text/markdown',
  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. ])