From 15e9234903749e61454b2c99b20e90b2e8ea4791 Mon Sep 17 00:00:00 2001 From: Nathan TeBlunthuis Date: Wed, 28 May 2025 20:59:55 -0700 Subject: [PATCH] adding pyproject.toml --- pyproject.toml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..6d1e94e --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,24 @@ +[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", + "mw>=0.4.0", + "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" } + +[dependency-groups] +dev = [ + "pandas>=2.1.0", + "pytest>=8.3.5", +] -- 2.39.5