forked from tokland/youtube-upload
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (27 loc) · 1.01 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
#!/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": "[email protected]",
"url": "https://github.com/tokland/youtube-upload",
"packages": ["youtube_upload/", "youtube_upload/auth"],
"data_files": [("share/youtube_upload", ['client_secrets.json'])],
"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',
],
}
setup(**setup_kwargs)