-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (38 loc) · 1021 Bytes
/
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
[tool.poetry]
name = "disclosure-attack-on-anonymity"
version = "0.1.0"
description = ""
authors = ["Mehmet Aktas <[email protected]>"]
packages = [
{ include = "src" }
]
[tool.poetry.dependencies]
python = "^3.9,<3.12"
simpy = "^4.0.1"
pytest = "^7.1.2"
matplotlib = "^3.5.2"
scipy = "^1.9.0"
isort = "^5.10.1"
black = "^22.6.0"
flake8 = "^5.0.4"
scikit-learn = "^1.3.0"
jedi = "^0.19.0"
joblib = "^1.3.2"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.1"
log_cli = "true"
# log_cli_level = "DEBUG"
log_cli_level = "INFO"
## Note ([email protected]): This will allow pytest to print out all the
## logging output to cli.
# log_cli_level = "NOTSET"
# log_cli_format = "%(levelname)s:%(filename)s:%(lineno)s-%(funcName)s: %(message)s"
log_cli_format = "%(levelname)s] %(file_name)s:%(line_number)s - %(func_name)s: %(message)s"
# addopts = "--show-capture=stderr"
testpaths = [
"tests",
]