-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·28 lines (27 loc) · 1010 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 distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
name = "svtplaydump",
version = "0.5",
description = "Download from svtplay.se",
author = "Mikael Frykholm",
author_email = "[email protected]",
url = "https://github.com/mikaelfrykholm/svtplaydump",
keywords = ["svtplay"],
install_requires=['beautifulsoup4', 'feedparser', 'requests>=1.2.1', 'pycrypto>=2.6.1','html5lib', 'lxml'],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
],
long_description = """\
svtplaydump downloads svtplay content for offline viewing.
Use like this:
svtplaydump.py -u http://www.svtplay.se/video/128812/jakten-pa-bernhard
"""
)