Set up sift subproject
This commit is contained in:
parent
5d5be23c79
commit
76a4fbb6ad
3 changed files with 17 additions and 0 deletions
3
sift/.gitignore
vendored
Normal file
3
sift/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
__pycache__/
|
||||||
|
/*.egg-info/
|
||||||
|
/.venv/
|
||||||
12
sift/pyproject.toml
Normal file
12
sift/pyproject.toml
Normal 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
2
sift/sift.py
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
def main():
|
||||||
|
print("Hello world")
|
||||||
Loading…
Add table
Add a link
Reference in a new issue