setup.py (1176B)
1 #!/usr/bin/python 2 """Upload videos to Youtube.""" 3 from distutils.core import setup 4 5 setup_kwargs = { 6 "name": "youtube-upload", 7 "version": "0.8.0", 8 "description": "Upload videos to Youtube", 9 "author": "Arnau Sanchez", 10 "author_email": "pyarnau@gmail.com", 11 "url": "https://github.com/tokland/youtube-upload", 12 "packages": ["youtube_upload/", "youtube_upload/auth"], 13 "scripts": ["bin/youtube-upload"], 14 "license": "GNU Public License v3.0", 15 "long_description": " ".join(__doc__.strip().splitlines()), 16 "classifiers": [ 17 'Development Status :: 4 - Beta', 18 'Intended Audience :: End Users/Desktop', 19 'License :: OSI Approved :: GNU General Public License (GPL)', 20 'Natural Language :: English', 21 'Operating System :: POSIX', 22 'Operating System :: Microsoft :: Windows', 23 'Programming Language :: Python', 24 'Topic :: Internet :: WWW/HTTP', 25 ], 26 "entry_points": { 27 'console_scripts': [ 28 'youtube-upload = youtube_upload.main:run' 29 ], 30 }, 31 "install_requires":[ 32 'google-api-python-client', 33 'progressbar2' 34 ] 35 } 36 37 setup(**setup_kwargs)