setup.py 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. "data_files": [("share/youtube_upload", ['client_secrets.json'])],
  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. setup(**setup_kwargs)