forked from tokland/youtube-upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.17 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
#!/usr/bin/python
"""Upload videos to Youtube."""
from distutils.core import setup
setup_kwargs = {
"name": "youtube-upload",
"version": "0.8.0",
"description": "Upload videos to Youtube",
"author": "Arnau Sanchez",
"author_email": "pyarnau@gmail.com",
"url": "https://github.com/tokland/youtube-upload",
"packages": ["youtube_upload/", "youtube_upload/auth"],
"scripts": ["bin/youtube-upload"],
"license": "GNU Public License v3.0",
"long_description": " ".join(__doc__.strip().splitlines()),
"classifiers": [
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
"entry_points": {
'console_scripts': [
'youtube-upload = youtube_upload.main:run'
],
},
"install_requires":[
'google-api-python-client',
'oauth2client',
'progressbar2'
]
}
setup(**setup_kwargs)