Scripting way to upload videos to peertube and youtube
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.1 KiB

  1. [tool.poetry]
  2. name = "prismedia"
  3. version = "0.12.1"
  4. description = "scripting your way to upload videos on peertube and youtube"
  5. authors = [
  6. "LecygneNoir <git@lecygnenoir.info>",
  7. "Rigel Kent <sendmemail@rigelk.eu>",
  8. "Zykino"
  9. ]
  10. license = "AGPL-3.0-only"
  11. readme = 'README.md'
  12. repository = "https://git.lecygnenoir.info/LecygneNoir/prismedia"
  13. homepage = "https://git.lecygnenoir.info/LecygneNoir/prismedia"
  14. keywords = ['peertube', 'youtube', 'prismedia']
  15. [tool.poetry.dependencies]
  16. python = ">=3.6"
  17. clint = ">=0.5.1"
  18. configparser = ">=3.7.1"
  19. docopt = ">=0.6.2"
  20. future = ">=0.17.1"
  21. google-api-python-client = ">=1.7.6"
  22. google-auth = ">=1.6.1"
  23. google-auth-httplib2 = ">=0.0.3"
  24. google-auth-oauthlib = ">=0.2.0"
  25. httplib2 = ">=0.12.1"
  26. oauthlib = ">=2.1.0"
  27. requests = ">=2.18.4"
  28. requests-oauthlib = ">=0.8.0"
  29. requests-toolbelt = ">=0.9.1"
  30. schema = ">=0.7.1"
  31. tzlocal = ">=1.5.1"
  32. Unidecode = ">=1.0.23"
  33. uritemplate = ">=3.0.0"
  34. urllib3 = ">=1.22"
  35. [tool.poetry.dev-dependencies]
  36. [tool.poetry.scripts]
  37. prismedia = 'prismedia.upload:main'
  38. prismedia-init = 'prismedia.genconfig:genconfig'
  39. [build-system]
  40. requires = ["poetry>=0.12"]
  41. build-backend = "poetry.masonry.api"