-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (50 loc) · 1011 Bytes
/
Copy pathpyproject.toml
File metadata and controls
60 lines (50 loc) · 1011 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "isabelle-gym"
version = "0.1.0"
dependencies = [
"py4j",
"numpy",
"matplotlib",
"tqdm",
]
[project.optional-dependencies]
dev = [
"pre-commit",
"pytest",
"pytest-cov",
"pylint",
"isort",
"black",
"mypy",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["client*", "repl*", "server_gym*"]
[tool.pylint.main]
ignore-paths = [
".*venv",
]
disable = [
# super-linter cannot install dependencies
"import-error",
# Code lines already checked by black and length of strings doesn't need to be capped
# (will interfere with expect tests)
"line-too-long",
]
[tool.mypy]
disable_error_code = [
"import-untyped",
]
strict = true
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
[tool.coverage.run]
source = ["server", "client", "server_gym"]
[tool.pytest.ini_options]
addopts = ""