Initial commit

This commit is contained in:
2024-04-27 14:11:51 +00:00
commit 212cb6568e
9 changed files with 954 additions and 0 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[tool.poetry]
name = "lab-server"
version = "0.1.0"
description = ""
authors = ["Chris Proctor <chris@chrisproctor.net>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
django-banjo = "^0.5.1"
requests = "^2.31.0"
fuzzywuzzy = "^0.18.0"
python-levenshtein = "^0.25.0"
pronouncing = "^0.2.0"
tqdm = "^4.66.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"