-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 785 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[tool.poetry]
name = "python-wikitext-parser-guide"
version = "0.1.0"
description = ""
license = "MIT"
authors = ["Carolina Lennon <14179052+lennon-c@users.noreply.github.com>"]
readme = "docs/README.md"
repository = "https://github.com/lennon-c/python-wikitext-parser-guide"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
requests = "^2.32.3"
lxml = "^5.3.0"
mwparserfromhell = "^0.6.6"
python-dotenv = "^1.0.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
ipykernel = "^6.29.5"
mkdocstrings-python = "^1.12.2"
mkdocs = "^1.6.1"
mkdocs-material = "^9.5.42"
markdown-exec = {extras = ["ansi"], version = "^1.9.3"}
mkdocs-open-in-new-tab = "^1.0.7"
nbformat = "^5.10.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"