Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/file/python/setup.py
39478 views
1
# coding: utf-8
2
3
from __future__ import unicode_literals
4
5
from setuptools import setup
6
7
with open('README.md', 'r') as fh:
8
long_description = fh.read()
9
10
11
setup(name='file-magic',
12
version='0.4.0',
13
author='Reuben Thomas, Álvaro Justen',
14
author_email='[email protected], [email protected]',
15
url='https://github.com/file/file',
16
license='BSD',
17
description='(official) libmagic Python bindings',
18
long_description=long_description,
19
long_description_content_type='text/markdown',
20
py_modules=['magic'],
21
test_suite='tests',
22
classifiers = [
23
'Intended Audience :: Developers',
24
'License :: OSI Approved :: BSD License',
25
'Natural Language :: English',
26
'Topic :: Software Development :: Libraries :: Python Modules',
27
])
28
29