add some informations in the setup file

This commit is contained in:
Mathias Koehler 2011-11-16 21:05:32 +01:00
parent fb0e727f7e
commit 917fce3b21

View file

@ -1,14 +1,17 @@
#!/usr/bin/env python
# -*- coding: utf8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
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']
)