]>
Commit | Line | Data |
---|---|---|
84f7ef7d MF |
1 | from distribute_setup import use_setuptools |
2 | use_setuptools() | |
3 | from setuptools import setup | |
4 | setup( | |
5 | name = "svtplaydump", | |
6 | version = "0.5", | |
7 | description = "Download from svtplay.se", | |
8 | author = "Mikael Frykholm", | |
9 | author_email = "mikael@frykholm.com", | |
10 | url = "https://github.com/mikaelfrykholm/svtplaydump", | |
11 | keywords = ["svtplay"], | |
d26e6919 | 12 | install_requires=['beautifulsoup4', 'feedparser', 'requests>=1.2.1', 'pycrypto>=2.6.1','html5lib', 'lxml'], |
84f7ef7d MF |
13 | classifiers = [ |
14 | "Programming Language :: Python", | |
15 | "Programming Language :: Python :: 3", | |
16 | "Development Status :: 4 - Beta", | |
17 | "Environment :: Other Environment", | |
18 | "Intended Audience :: Developers", | |
19 | "License :: OSI Approved :: GNU General Public License (GPL)", | |
20 | "Operating System :: OS Independent", | |
21 | ], | |
22 | long_description = """\ | |
23 | svtplaydump downloads svtplay content for offline viewing. | |
24 | ||
25 | Use like this: | |
26 | svtplaydump.py -u http://www.svtplay.se/video/128812/jakten-pa-bernhard | |
27 | """ | |
28 | ) |