mirror of
https://github.com/Steffo99/bbbdl.git
synced 2024-11-22 07:44:18 +00:00
24 lines
520 B
TOML
24 lines
520 B
TOML
[tool.poetry]
|
|
name = "bbbdl"
|
|
version = "1.1.0"
|
|
description = "A downloader for BigBlueButton meetings"
|
|
authors = [
|
|
"Stefano Pigozzi <ste.pigozzi@gmail.com>",
|
|
"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__:main'
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|