20 lines
466 B
TOML
20 lines
466 B
TOML
[tool.poetry]
|
|
name = "mumble-wiki-crawler"
|
|
version = "0.1.0"
|
|
description = "A script to crawl the Mumble wiki and convert it to Markdown"
|
|
authors = ["restitux <restitux@ohea.xyz>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
packages = [{include = "mumble_wiki_crawler"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
selenium = "^4.8.2"
|
|
python-creole = "^1.4.10"
|
|
markdownify = "^0.11.6"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|