-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
29 lines (23 loc) · 826 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup
setup(
name='MediaInfo',
version='0.0.9',
description='A Python wrapper around the ffprobe or mediainfo command line utility',
long_description=open('README.rst').read(),
url='https://github.com/laodifang/MediaInfo',
author='Ren Peng',
author_email='[email protected]',
license='MIT',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3 :: Only',
],
keywords='Python ffmpeg ffprobe mediainfo',
packages=['tests'],
py_modules=['MediaInfo'],
test_suite='tests',
)