1
Fork 0
mirror of https://github.com/Steffo99/bbbdl.git synced 2024-11-22 15:54:18 +00:00
bbbdl/pyproject.toml

30 lines
618 B
TOML
Raw Normal View History

2020-10-26 02:05:14 +00:00
[tool.poetry]
name = "bbbdl"
2020-11-15 11:47:53 +00:00
version = "1.3.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"
2020-11-04 16:17:47 +00:00
colorama = "^0.4.4"
2020-10-26 02:05:14 +00:00
[tool.poetry.scripts]
2020-10-26 17:14:14 +00:00
bbbdl = 'bbbdl.__main__:main'
2020-10-26 02:05:14 +00:00
2020-11-18 10:53:09 +00:00
[tool.poetry.dev-dependencies]
sphinx = "^3.3.1"
sphinx_rtd_theme = "^0.5.0"
2020-10-26 02:05:14 +00:00
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"