forked from goldsmith/Wikipedia
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 831 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 831 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
31
32
33
34
35
36
37
38
[tool.poetry]
name = "mediawikiapi"
version = "1.3"
description = "Wikipedia API on Python"
authors = ["Taras Lehinevych <info@taraslehinevych.me>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
beautifulsoup4 = "^4.11.1"
requests = "^2.28.1"
urllib3 = "^2.6.3"
sphinx = { version = "^7.2.6", optional=true}
[tool.poetry.group.dev.dependencies]
mypy = "^1.15.0"
black = "^25.1.0"
isort = "^6.0.1"
autoflake = "^2.3.1"
flake8 = "^7.1.2"
pytest = "^8.3.5"
pytest-cov = "^6.0.0"
pytest-vcr = "^1.0.2"
typing-extensions = "^4.12.2"
types-beautifulsoup4 = "^4.12.0.20250204"
types-requests = "^2.32.0.20250306"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
line_length = 88
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"