2020-10-26 02:05:14 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "bbbdl"
|
2020-10-26 17:02:37 +00:00
|
|
|
version = "1.0.0"
|
2020-10-26 02:05:14 +00:00
|
|
|
description = "A downloader for BigBlueButton meetings"
|
|
|
|
authors = [
|
2020-10-26 17:02:37 +00:00
|
|
|
"Stefano Pigozzi <ste.pigozzi@gmail.com>",
|
2020-10-26 02:05:14 +00:00
|
|
|
"g.minoccari <g.minoccari@gmail.com>",
|
|
|
|
]
|
|
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.8"
|
|
|
|
click = "^7.1.2"
|
|
|
|
beautifulsoup4 = "^4.9.3"
|
|
|
|
requests = "^2.24.0"
|
|
|
|
ffmpeg-python = "^0.2.0"
|
|
|
|
lxml = "^4.6.1"
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
bbbdl = 'bbbdl.__main__:download'
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.masonry.api"
|