-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (70 loc) · 1.95 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (70 loc) · 1.95 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
[build-system]
requires = ["hatchling>=1.18"]
build-backend = "hatchling.build"
[project]
name = "relay-lint"
dynamic = ["version"]
description = "Local, conservative timing-risk review for polyglot control programs"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [{ name = "devkyato" }]
keywords = ["arduino", "esp32", "source-review", "timing", "polyglot"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = [
"pathspec>=0.12,<2",
"tomli>=2.0; python_version < '3.11'",
]
[project.optional-dependencies]
dev = [
"build>=1.0",
"jsonschema>=4.18,<5",
"mypy>=1.8,<1.20",
"pytest>=7.4",
"pytest-cov>=4.1",
"ruff>=0.4",
]
[project.scripts]
relay = "relay.cli:main"
[project.urls]
Repository = "https://github.com/devkyato/Relay"
Documentation = "https://github.com/devkyato/Relay/tree/main/docs"
Issues = "https://github.com/devkyato/Relay/issues"
Changelog = "https://github.com/devkyato/Relay/blob/main/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
packages = ["src/relay"]
[tool.hatch.version]
path = "src/relay/__init__.py"
[tool.hatch.build]
exclude = [
"/.release-smoke",
"/dist",
"/relay-report.md",
"/timing-summary.md",
]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
[tool.ruff]
target-version = "py39"
line-length = 100
extend-exclude = ["examples", "tests/fixtures"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = ["UP006", "UP007", "UP035", "UP037", "UP045"]
[tool.mypy]
python_version = "3.9"
strict = true
files = ["src"]