setup.py 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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.cmdline:cmdline_main'
  29. ],
  30. }
  31. }
  32. setup(**setup_kwargs)