forked from simonh10/ffprobe
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
25 lines (23 loc) · 779 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name='ffprobe',
version='0.3',
description='Wrapper around ffprobe command to extract metadata from media files',
author='Simon Hargreaves',
author_email='simon@simon-hargreaves.com',
url='http://www.simon-hargreaves.com/ffprobe',
packages=['ffprobe'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Natural Language :: English',
'Topic :: Multimedia :: Video',
'Topic :: Software Development :: Libraries'
])