-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
27 lines (24 loc) · 973 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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
__author__ = 'andyguo'
from setuptools import setup
setup(
name='dayu_ffmpeg',
version='0.5.1',
packages=['dayu_ffmpeg', 'dayu_ffmpeg.network', 'dayu_ffmpeg.errors', 'dayu_ffmpeg.network.edge',
'dayu_ffmpeg.network.knob', 'dayu_ffmpeg.network.node'],
include_package_data=True,
url='https://github.com/phenom-films/dayu_ffmpeg',
license='MIT',
author='andyguo',
author_email='[email protected]',
description='FFmpeg python wrapper for human, with common filters built in.',
long_description=open('README.rst').read(),
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
)