Set up sift subproject

This commit is contained in:
Joscha 2022-09-29 23:07:21 +02:00
parent 5d5be23c79
commit 76a4fbb6ad
3 changed files with 17 additions and 0 deletions

3
sift/.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
__pycache__/
/*.egg-info/
/.venv/

12
sift/pyproject.toml Normal file
View file

@ -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"

2
sift/sift.py Normal file
View file

@ -0,0 +1,2 @@
def main():
print("Hello world")