diff --git a/sift/.gitignore b/sift/.gitignore new file mode 100644 index 0000000..9616a02 --- /dev/null +++ b/sift/.gitignore @@ -0,0 +1,3 @@ +__pycache__/ +/*.egg-info/ +/.venv/ diff --git a/sift/pyproject.toml b/sift/pyproject.toml new file mode 100644 index 0000000..0e1da80 --- /dev/null +++ b/sift/pyproject.toml @@ -0,0 +1,12 @@ +[build-system] +requires = ["setuptools", "setuptools-scm"] +build-backend = "setuptools.build_meta" + +[project] +name = "sift" +version = "0.1.0" +description = "Sift through wikipedia dumps and extract interesting info" +dependencies = ["mwxml >= 0.3.3, < 0.4"] + +[project.scripts] +sift = "sift:main" diff --git a/sift/sift.py b/sift/sift.py new file mode 100644 index 0000000..430a00f --- /dev/null +++ b/sift/sift.py @@ -0,0 +1,2 @@ +def main(): + print("Hello world")