18 lines
377 B
Python
Executable file
18 lines
377 B
Python
Executable file
#!/usr/bin/env python
|
|
# -*- coding: utf8 -*-
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
setup(
|
|
name="ffmpegwrapper",
|
|
version="0.1-dev",
|
|
license="BSD",
|
|
zip_safe=False,
|
|
author="Mathias Koehler",
|
|
author_email="mail@mathias.im",
|
|
url="http://github.com/interrupted/ffmpegwrapper",
|
|
description='A simple wrapper for ffmpeg-cli',
|
|
packages=['ffmpegwrapper']
|
|
)
|