-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
42 lines (40 loc) · 1.24 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
40
41
42
#!/usr/bin/python
"""Store files as YouTube videos."""
from distutils.core import setup
setup_kwargs = {
"name": "youtube-drive",
"version": "0.0.1",
"description": "Store files as YouTube videos",
"author": "Le Wang",
"author_email": "[email protected]",
"url": "https://github.com/lewangdev/youtube-drive",
"packages": ["youtube_drive/"],
"scripts": ["bin/youtube-drive"],
"license": "Apache-2.0 license",
"long_description": " ".join(__doc__.strip().splitlines()),
"classifiers": [
'Topic :: Internet :: WWW/HTTP',
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3',
],
"entry_points": {
'console_scripts': [
'youtube-drive = youtube_drive.main:run'
],
},
"install_requires": [
'numpy',
'opencv-python',
'youtube-dl',
'pillow',
'youtube-upload==0.8.0'
],
"dependency_links": [
'git+https://github.com/tokland/youtube-upload.git#egg=youtube-upload-0.8.0'
]
}
setup(**setup_kwargs)