-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 1.03 KB
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
[tool.poetry]
name = "psykoda"
version = "0.1.0"
description = "Anomaly detection for IDS logs"
authors = [
"Koda, Satoru <koda.satoru@fujitsu.com>",
"Kokubo, Hirotaka <kokubo.hirotaka@fujitsu.com>",
"Ohori, Ryuichi <ohori.ryuichi@fujitsu.com>",
]
repository = "https://github.com/FujitsuResearch/psykoda/"
homepage = "https://fujitsuresearch.github.io/psykoda/"
[tool.poetry.dependencies]
python = "^3.7.1,<3.10"
matplotlib = "~3.2"
numpy = "*"
pandas = "^1.2"
scikit-learn = "^0.23"
scipy = "*"
numba = "^0.53"
shap = "^0.37"
tensorflow = "^2.3.4"
dacite = "^1.6.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = "^20.8b1"
mypy = "^0.812"
tox = "^3.23.0"
pylint = "^2.10.0"
coverage = "^5.5"
Sphinx = "^4.0.2"
isort = "^5.9.1"
recommonmark = "^0.7.1"
sphinx-markdown-tables = "^0.0.15"
[tool.poetry.scripts]
psykoda = "psykoda.cli:main"
[tool.isort]
profile = "black"
src_paths = ["src", "tests"]
extend_skip = ["docs", "examples"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"