forked from aldarund/easy-thumbnails-ffmpeg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (26 loc) · 923 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='easy-thumbnails-ffmpeg',
version='0.1.1',
license='CC0 1.0',
description='Video thumbnails source generator.',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Multimedia :: Graphics :: Graphics Conversion',
'Topic :: Multimedia :: Video :: Display',
],
keywords='easy_thumbnails ffmpeg video thumbnails django',
url='https://github.com/pluma/easy-thumbnails-ffmpeg',
author='Alan Plum',
author_email='me@pluma.io',
packages=['easy_thumbnails_ffmpeg'],
install_requires=[
'easy_thumbnails',
],
zip_safe=False)