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.

49 lines
1.2 KiB

  1. [tool.poetry]
  2. name = "prismedia"
  3. version = "0.12.2"
  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 = "=1.1.0"
  29. requests-toolbelt = ">=0.9.1"
  30. pytz = "=2022.1"
  31. schema = ">=0.7.1"
  32. tzlocal = ">=1.5.1"
  33. Unidecode = ">=1.0.23"
  34. uritemplate = ">=3.0.0"
  35. urllib3 = ">=1.22"
  36. [tool.poetry.dev-dependencies]
  37. [tool.poetry.scripts]
  38. prismedia = 'prismedia.upload:main'
  39. prismedia-init = 'prismedia.genconfig:genconfig'
  40. [build-system]
  41. requires = ["poetry>=0.12"]
  42. build-backend = "poetry.masonry.api"