setup.py 1.0 KB

123456789101112131415161718192021222324252627282930
  1. #!/usr/bin/python
  2. """Upload videos to Youtube."""
  3. from youtube_upload import VERSION
  4. from distutils.core import setup
  5. setup_kwargs = {
  6. "name": "youtube-upload",
  7. "version": VERSION,
  8. "description": "Upload videos to Youtube",
  9. "author": "Arnau Sanchez",
  10. "author_email": "tokland@gmail.com",
  11. "url": "http://code.google.com/p/youtube-upload/",
  12. "packages": ["youtube_upload/"],
  13. "data_files": [("share/youtube_upload", ['client_secrets.json'])],
  14. "scripts": ["bin/youtube-upload"],
  15. "license": "GNU Public License v3.0",
  16. "long_description": " ".join(__doc__.strip().splitlines()),
  17. "classifiers": [
  18. 'Development Status :: 4 - Beta',
  19. 'Intended Audience :: End Users/Desktop',
  20. 'License :: OSI Approved :: GNU General Public License (GPL)',
  21. 'Natural Language :: English',
  22. 'Operating System :: POSIX',
  23. 'Operating System :: Microsoft :: Windows',
  24. 'Programming Language :: Python',
  25. 'Topic :: Internet :: WWW/HTTP',
  26. ],
  27. }
  28. setup(**setup_kwargs)