Files
wikiq/pyproject.toml
Nathan TeBlunthuis 2a2b611d79 Fix issue with .7z archives
Before, only fandom wikis dumps were compressed with .7z.
These archives can have several .xml files in the .7z; not just one.
So we need to have a flag for the fandom-2020 dumps.

This fixes the bug so .7z archives work in either case.
2025-05-28 21:49:11 -07:00

26 lines
555 B
TOML

[project]
name = "mediawiki-dump-tools"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"deltas>=0.7.0",
"mediawiki-utilities>=0.4.18",
"mwpersistence>=0.2.4",
"mwreverts>=0.1.5",
"mwxml>=0.3.6",
"pyarrow>=20.0.0",
"yamlconf",
]
[tool.uv.sources]
yamlconf = { git = "https://github.com/groceryheist/yamlconf" }
mwxml = { git = "https://github.com/groceryheist/python-mwxml" }
[dependency-groups]
dev = [
"pandas>=2.1.0",
"pytest>=8.3.5",
]