From: Nathan TeBlunthuis Date: Thu, 29 May 2025 03:59:55 +0000 (-0700) Subject: adding pyproject.toml X-Git-Url: https://code.communitydata.science/mediawiki_dump_tools.git/commitdiff_plain/refs/heads/parquet_support?hp=8c7d46472f53ec4710a579ba4cf542bec1003854 adding 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", +]