-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (53 loc) · 1.21 KB
/
pyproject.toml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "yoyomaskr"
packages = [
{ include = "src" }
]
version = "0.0.1"
description = "Reversible anonymisation service for us all"
license = "Apache 2.0"
authors = ["AI Circle <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.12,<3.13"
fastapi= {extras = ["standard"], version = "^0"}
langchain-ollama= "^0"
rapidfuzz= "^3"
regex= "^2024"
python-dotenv = "^1"
mypy = "^1"
setuptools = "^0"
uvicorn = "^0"
gunicorn = "^0"
python-dateutil = "^2.9.0.post0"
tqdm = "^4.66.6"
dill = "^0.3.9"
spacy ="^3.8"
presidio_analyzer="^2.2"
pydantic = "^2.9.2"
[tool.poetry.group.dev.dependencies]
pytest = "^6.0"
ruff = "^0.7"
ipykernel = "^6.29.5"
jupyter = "^1.1.1"
pytest-benchmark = "^5.0.1"
pyahocorasick = "^2.1.0"
polars = "^1.12.0"
flashtext2 = "^1.1.0"
retrie = "^0.3.1"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
python_classes = ["Test"]
python_functions = ["test_", "it_", "and_", "but_", "they_"]
python_files = ["test_*.py"]
testpaths = [
"tests"
]
filterwarnings = [
"error",
'ignore:ast.* is deprecated:DeprecationWarning',
'ignore:PluggyTeardownRaisedWarning',
]