setup.py 1.1 KB

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