scripting your 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.

39 lines
925 B

  1. [tool.poetry]
  2. name = "prismedia"
  3. version = "0.6.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. ]
  9. license = "AGPL-3.0-only"
  10. readme = 'README.md'
  11. repository = "https://git.lecygnenoir.info/LecygneNoir/prismedia"
  12. homepage = "https://git.lecygnenoir.info/LecygneNoir/prismedia"
  13. keywords = ['peertube', 'youtube']
  14. [tool.poetry.dependencies]
  15. python = "~2.7 || ^3.3"
  16. google-auth-oauthlib = "^0.2.0"
  17. requests-toolbelt = "^0.9.1"
  18. docopt = "^0.6.2"
  19. google-auth = "^1.6"
  20. google-auth-httplib2 = "^0.0.3"
  21. tzlocal = "^1.5"
  22. python-magic = "^0.4.15"
  23. schema = "^0.6.8"
  24. google-api-python-client = "^1.7"
  25. configparser = "^3.7"
  26. future = "^0.17.1"
  27. [tool.poetry.dev-dependencies]
  28. [tool.poetry.scripts]
  29. prismedia = 'prismedia.upload:main'
  30. [build-system]
  31. requires = ["poetry>=0.12"]
  32. build-backend = "poetry.masonry.api"