forked from COVESA/vss-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (52 loc) · 1.26 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
[project]
name = "vss-tools"
version = "6.0a0"
description='COVESA Vehicle Signal Specification tooling.'
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"anytree>=2.12.1",
"bump2version>=1.0.1",
"click>=8.1.7",
"deprecation>=2.1.0",
"graphql-core>=3.2.5",
"importlib-metadata>=8.5.0",
"jsonschema>=4.23.0",
"pydantic>=2.9.2",
"pyyaml>=6.0.2",
"rdflib>=7.1.1",
"rich-click>=1.8.3",
"rich>=13.9.4",
"ruff>=0.7.3",
]
authors = [
{name="COVESA VSS", email="[email protected]"}
]
license = {text = "Mozilla Public License 2.0"}
[project.urls]
Homepage="https://github.com/COVESA/vss-tools"
Issues = "https://github.com/COVESA/vss-tools/issues"
Changelog = "https://github.com/COVESA/vss-tools/blob/master/CHANGELOG.md"
[project.scripts]
vspec = "vss_tools.cli:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.mypy]
disable_error_code = "import-untyped"
[tool.ruff]
line-length = 120
[tool.uv]
package = true
[tool.ruff.lint]
select = ["E", "F", "I"]
[dependency-groups]
dev = [
"mypy>=1.13.0",
"nox>=2024.10.9",
"pre-commit>=4.0.1",
"pytest-cov>=6.0.0",
"pytest>=8.3.3",
"types-pyyaml>=6.0.12.20240917",
"types-setuptools>=75.3.0.20241107",
]