-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (70 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
83 lines (70 loc) · 1.58 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "kriscv"
version = "0.1.126"
description = "K tooling for the RISC-V architecture"
readme = "README.md"
requires-python = "~=3.10"
dependencies = [
"kframework==7.1.318",
"filelock>=3.14.0,<4",
"pyelftools>=0.26",
"pyyaml>=6.0.1,<7",
"riscof>=1.25.3,<2",
"riscv-assembler>=1.2.1,<2",
]
[[project.authors]]
name = "Runtime Verification, Inc."
email = "contact@runtimeverification.com"
[project.scripts]
kriscv = "kriscv.__main__:main"
kriscv-asm = "kriscv.devtools:kriscv_asm"
[project.entry-points.kdist]
riscv-semantics = "kriscv.kdist.plugin"
[project.entry-points.kprovex]
riscv = "kriscv.symtools:KRiscVPlugin"
[dependency-groups]
dev = [
"autoflake",
"black",
"flake8",
"flake8-bugbear",
"flake8-comprehensions",
"flake8-quotes",
"flake8-type-checking",
"isort",
"mypy",
"pep8-naming",
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-xdist",
"pyupgrade",
"types-pyyaml>=6.0.12.20240311",
]
[tool.uv]
override-dependencies = [
"gitpython>3.1.17,<4",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.isort]
profile = "black"
line_length = 120
[tool.autoflake]
recursive = true
expand-star-imports = true
remove-all-unused-imports = true
ignore-init-module-imports = true
remove-duplicate-keys = true
remove-unused-variables = true
[tool.black]
line-length = 120
skip-string-normalization = true
[tool.mypy]
disallow_untyped_defs = true
[[tool.mypy.overrides]]
module = "elftools.*"
ignore_missing_imports = true