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.

50 lines
1.2 KiB

  1. [tool.poetry]
  2. name = "prismedia"
  3. version = "0.11.0"
  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.5"
  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. python-magic = "^0.4.15"
  28. python-magic-bin = { version = "^0.4.14", markers = "platform_system == 'Windows'" }
  29. requests = "^2.18.4"
  30. requests-oauthlib = "^0.8.0"
  31. requests-toolbelt = "^0.9.1"
  32. schema = ">=0.7.1"
  33. tzlocal = "^1.5.1"
  34. Unidecode = "^1.0.23"
  35. uritemplate = "^3.0.0"
  36. urllib3 = "^1.22"
  37. [tool.poetry.dev-dependencies]
  38. [tool.poetry.scripts]
  39. prismedia = 'prismedia.upload:main'
  40. prismedia-init = 'prismedia.genconfig:genconfig'
  41. [build-system]
  42. requires = ["poetry>=0.12"]
  43. build-backend = "poetry.masonry.api"