-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.1 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
[tool.poetry]
name = "inquizitor"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
uvicorn = "^0.16.0"
Jinja2 = "^3.0.3"
aiofiles = "^0.8.0"
psycopg2 = "^2.9.3"
python-dotenv = "^0.19.2"
pydantic = {extras = ["email"], version = "^1.9.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
Faker = "^11.3.0"
alembic = "^1.7.5"
python-jose = "^3.3.0"
python-multipart = "^0.0.5"
pytest = "^6.2.5"
requests = "^2.27.1"
httpx = "^0.23.0"
trio = "^0.19.0"
fastapi-jwt-auth = "^0.5.0"
sqlmodel = "^0.0.6"
factory-boy = "^3.2.1"
fastapi = "0.70.1"
SQLAlchemy = "1.4.29"
Unidecode = "^1.3.6"
pandas = "^1.5.1"
joblib = "^1.2.0"
sklearn = "^0.0"
scikit-learn = "1.0.2"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
#log_cli = "True"
#log_cli_level = "INFO"
log_cli_format = "%(asctime)s %(levelname)s %(message)s"
log_file = "logs/pytest-logs.txt"
log_file_level = "INFO"
log_file_format = "%(asctime)s %(levelname)s %(message)s"
log_level = "INFO"