-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 936 Bytes
/
setup.py
File metadata and controls
34 lines (30 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
from distutils.core import setup
try:
import pypandoc
long_description=pypandoc.convert('README.md', 'rst')
except(IOError, ImportError, RuntimeError):
long_description=open('README.md').read()
try:
import PyQt5
install_requires = []
except(ImportError):
install_requires = ['PyQt5']
setup(
name = 'tiffstack2avi',
packages = [],
version = '1.1.6',
py_modules = ['tiffstack2avi'],
description = 'A small python wrapper for ffmpeg',
author = 'Taro Kiritani',
author_email = 'taro.kiritani@epfl.ch',
url = 'https://github.com/tarokiritani/tiffstack2avi',
download_url = 'https://github.com/tarokiritani/tiffstack2avi/tarball/1.1.6',
keywords = ['ffmpeg', 'python', 'wrapper'],
classifiers = [
'Programming Language :: Python :: 3.5'
],
license='MIT',
long_description=long_description,
install_requires=install_requires,
)