initial commit

This commit is contained in:
Chris Proctor
2024-03-29 19:39:37 -04:00
commit ddf5786bdc
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"