add more info in setup.py

This commit is contained in:
Mathias Koehler 2011-12-11 22:00:58 +01:00
parent 6b584c7d7e
commit 8d130194ee

View file

@ -1,5 +1,22 @@
#!/usr/bin/env python #!/usr/bin/env python
# -*- coding: utf8 -*- # -*- coding: utf8 -*-
"""
FFmpegwrapper
~~~~~~~~~~~~~
FFmpegWrapper is a small wrapper for the ffmpeg encoder. You can append
Codec, Filters and other OptionStores to the FFmpeg class and then run the
resulting command.
>>> from ffmpegwrapper import FFmpeg, Input, Output, VideoCodec, VideoFilter
>>> codec = VideoCodec('webm')
>>> input_video = Input('old')
>>> output_video = Output('new', videofilter, codec)
>>> FFmpeg('ffmpeg', input_video, output_video)
<FFmpeg ['ffmpeg', '-i', 'old', '-vcodec', 'webm', 'new']>
"""
from setuptools import setup from setuptools import setup
@ -7,11 +24,23 @@ from setuptools import setup
setup( setup(
name="ffmpegwrapper", name="ffmpegwrapper",
version="0.1-dev", version="0.1-dev",
license="BSD", packages=['ffmpegwrapper'],
zip_safe=False,
author="Mathias Koehler", author="Mathias Koehler",
author_email="mail@mathias.im", author_email="mail@mathias.im",
url="http://github.com/interrupted/ffmpegwrapper", url="http://github.com/interrupted/ffmpegwrapper",
description='A simple wrapper for ffmpeg-cli', description='A simple wrapper for ffmpeg-cli',
packages=['ffmpegwrapper'] keywords='Video Convert Ffmpeg',
long_description=__doc__,
license="BSD",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Video',
'Topic :: Software Development :: Libraries :: Python Modules'
]
) )