-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (40 loc) · 1.43 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import os
from codecs import open
from setuptools import setup
import youtube_thumbnail
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f:
long_description = f.read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-youtube-thumbnail',
version=youtube_thumbnail.__version__,
author='Ryan Senkbeil',
author_email='[email protected]',
description='Quickly pull the highest resolution thumbnail image available for a YouTube video.',
long_description=long_description,
url='https://github.com/gsmke/django-youtube-thumbnail',
license='BSD',
packages=['youtube_thumbnail'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'django-classy-tags >=0.6.2, <0.7',
'pafy >=0.3.74, <0.4',
'six',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP',
]
)