-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
46 lines (41 loc) · 1.33 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
This file is part of python-mediadecoder.
python-mediadecoder is free software: you can redistribute it and/or modify
it under the terms of the MIT License.
QNotifications is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
"""
from setuptools import setup, find_packages
import mediadecoder
setup(
name='mediadecoder',
version=mediadecoder.__version__,
description='Moviepy based media decoding library',
author='Daniel Schreij',
author_email='[email protected]',
url='https://github.com/dschreij/python-mediadecoder',
packages=find_packages('.'),
install_requires=[
'moviepy',
'numpy',
],
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'Environment :: Console',
'Topic :: Documentation :: Sphinx',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: Players',
'Topic :: Multimedia :: Video :: Display',
'Topic :: Software Development :: Libraries :: pygame',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
],
)