forked from JakeWharton/py-videodownloader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·39 lines (32 loc) · 1.27 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='videodownloader',
version='2.0.0',
author='Jake Wharton',
author_email='[email protected]',
url='http://github.com/JakeWharton/py-videodownloader',
license='Apache License, Version 2.0',
description='Python module and script for downloading video source files from the major online streaming sites (YouTube, Vimeo, etc.)',
long_description='Python module and script for downloading video source files from the major online streaming sites (YouTube, Vimeo, etc.)',
keywords='youtube vimeo download streaming video save',
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Multimedia :: Video',
'Topic :: Utilities',
],
entry_points = {
'console_scripts': [
'videodownloader = videodownloader.main:main',
],
},
)