forked from opencis/opencis-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (70 loc) · 1.54 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[tool.poetry]
name = "opencxl"
version = "0.1.0"
description = "OpenCXL"
authors = ["Paul Kang", "Kyeyoon Park"]
license = "BSD-3"
readme = "README.md"
packages = [{include = "opencxl"}]
[tool.poetry.dependencies]
python = "^3.11"
click = "^8.1.7"
humanfriendly = "^10.0"
pyyaml = "^6.0.1"
python-socketio = "^5.10.0"
aiohttp = "^3.8.6"
python-libpcap = "^0.4.2"
pytest-timeout = "^2.2.0"
scapy = "^2.5.0"
dill = "^0.3.7"
pytest-xdist = "^3.5.0"
websockets = "^12.0"
jsonrpcserver = "^5.0.9"
jsonrpcclient = "^4.0.3"
black = "^24.4.2"
sortedcontainers = "^2.4.0"
readerwriterlock = "^1.0.9"
torch = "^2.3.1"
torchvision = "^0.18.1"
torchinfo = "^1.8.0"
tqdm = "^4.66.4"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
pytest-cov = "^4.0.0"
pytest-asyncio = "^0.21.1"
pylint = "3.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = "tests/"
timeout = 20
filterwarnings = [
"ignore::DeprecationWarning"
]
[tool.pylint.main]
disable = [
"logging-fstring-interpolation",
"missing-function-docstring",
"missing-class-docstring",
"pointless-string-statement",
"too-many-arguments",
"too-many-branches",
"broad-exception-raised",
"broad-exception-caught",
"redefined-builtin",
"too-many-locals",
"invalid-name",
"fixme",
"too-many-lines",
"too-many-instance-attributes",
"too-many-public-methods",
"too-few-public-methods",
"unspecified-encoding",
"disallowed-name",
"too-many-statements",
]
jobs = 4
[tool.black]
line-length = 100
target-version = ['py311']