-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (74 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
91 lines (74 loc) · 1.91 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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[project]
name = "falslang"
version = "0.1.0"
description = ""
authors = [
]
readme = "README.md"
requires-python = ">=3.10, <3.11"
dependencies = [
"bo @ git+https://github.com/DaitTan/BOWrapper@81945d420f064e0387bef011c79492734387ec41",
"matplotlib==3.10.1",
"numpy==1.26.4",
"pandas==1.5.3",
"psy-taliro==1.0.0",
"rtamt==0.3.5",
"scikit-learn==1.6.1",
"scikit-optimize==0.9.0",
"scipy==1.15.2",
"tqdm==4.67.1",
"pytest-cov (>=7.0.0,<8.0.0)",
"dask (>=2025.9.0,<2026.0.0)",
"distributed (>=2025.9.0,<2026.0.0)",
"msgpack==1.1.1",
"tornado==6.5.2",
"bokeh (>=3.8.0,<4.0.0)",
"ray (==2.49.2)",
"matlabengine (==24.1.4)",
]
[tool.poetry]
packages = [{include = "falslang", from = "src"}]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
mypy = "^1.14.1"
ruff = "^0.9.3"
[tool.poetry.group.docs.dependencies]
Sphinx = "^5.3.0"
[tool.poetry.group.demos.dependencies]
matplotlib = "^3.5.2"
[tool.poe.tasks.test]
cmd = "pytest tests"
[tool.poe.tasks.lint]
cmd = "ruff check ${FILES}"
args = [
{ name = "FILES", positional = true, default = "src tests demos" }
]
[tool.poe.tasks.typecheck]
cmd = "mypy --pretty ${FILES}"
args = [
{ name = "FILES", positional = true, default = "src tests demos" }
]
[tool.poe.tasks.check]
sequence = ["typecheck", "lint"]
[tool.ruff]
line-length = 100
indent-width = 4
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.ruff.lint]
select = [
"E4", "E7", "E9", "F", "C90",
"A", "B", "I", "UP", "C4",
"PYI", "RET501", "RET502", "RET504",
"N8", "TD", "FBT", "SIM", "PTH",
]
[tool.ruff.lint.isort]
known-first-party = ["hyperpartx"]
split-on-trailing-comma = false
[tool.ruff.lint.per-file-ignores]