15 lines
232 B
Python
Executable file
15 lines
232 B
Python
Executable file
#!/usr/bin/env python
|
|
# -*- coding: utf8 -*-
|
|
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
|
|
setup(
|
|
name="ffmpegwrapper",
|
|
version="0.1-dev",
|
|
packages=['ffmpegwrapper']
|
|
)
|