-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 929 Bytes
/
setup.py
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
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
VERSION = '0.2.5'
setup(name='GetThumbnails',
version=VERSION,
description="A FFmpeg based thumbnails tool written by Python.",
long_description='Find more in https://github.com/liuwilliamBUPT/GetThumb',
classifiers=[],
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='python FFmpeg thumbnails',
author='William Liu',
author_email='[email protected]',
url='https://github.com/liuwilliamBUPT/GetThumb',
license='GPL v3.0',
packages=find_packages(),
install_requires=[
'pymediainfo',
'ffmpeg-python',
],
include_package_data=True,
zip_safe=True,
entry_points={
'console_scripts': [
'GetThumbnails = thumbnails.main:main'
]
},
)