-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (43 loc) · 1 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
48
49
50
# filepath: pyproject.toml
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cacheguard"
version = "2.1.0"
description = "LSTM-powered cache timing side-channel attack detector"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.111.0",
"uvicorn[standard]>=0.29.0",
"websockets>=12.0",
"pydantic>=2.7.1",
"pydantic-settings>=2.2.1",
"python-dotenv>=1.0.1",
"torch>=2.9.0",
"numpy>=1.26.4",
"scikit-learn>=1.4.2",
"loguru>=0.7.2",
]
[project.optional-dependencies]
dev = [
"pytest==8.2.0",
"pytest-asyncio==0.23.6",
"httpx==0.27.0",
"ruff==0.4.4",
"mypy==1.10.0",
]
[tool.ruff]
line-length = 120
select = ["E", "F", "I", "UP"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true
strict = false
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["cacheguard/tests"]
[tool.setuptools]
packages = ["cacheguard"]