setup.py (246e7a2b6494cd991b08ac669ed761ecea0cc98c) | setup.py (3e41d09d08f5bfa2fc1386241f334b865d6da085) |
---|---|
1# Python distutils build script for magic extension 2from distutils.core import setup | 1# coding: utf-8 |
3 | 2 |
4setup(name = 'Magic file extensions', 5 version = '0.2', 6 author = 'Reuben Thomas', 7 author_email = 'rrt@sc3d.org', 8 license = 'BSD', 9 description = 'libmagic Python bindings', 10 py_modules = ['magic']) | 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 ]) |