add some informations in the setup file
This commit is contained in:
parent
fb0e727f7e
commit
917fce3b21
11
setup.py
11
setup.py
|
|
@ -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']
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue