-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 890 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[tool.poetry]
name = "nofo-scanner"
version = "0.1.0"
description = "NOFO scanner prototype for locating and resolving complex language."
authors = ["Paul <p.craig@bloomworks.digital>"]
readme = "README.md"
packages = [{ include = "nofo_scanner", from = "src" }]
[tool.poetry.dependencies]
python = "^3.14"
flask = "^3.1.3"
markdown = "^3.10.2"
bleach = "^6.3.0"
fkscore = "^2.0.1"
beautifulsoup4 = "^4.14.3"
cachetools = "^7.1.4"
gunicorn = "^26.0.0"
openai = "^2.38.0"
python-dotenv = "^1.2.2"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.3"
isort = "^8.0.1"
black = "^26.5.1"
[tool.isort]
profile = "black"
line_length = 88
known_first_party = ["nofo-scanner"]
combine_as_imports = true
[tool.poetry.scripts]
dev = "nofo_scanner.app:dev"
start = "nofo_scanner.app:start"
test = "pytest:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"