-
Notifications
You must be signed in to change notification settings - Fork 56
/
pyproject.toml
47 lines (39 loc) · 933 Bytes
/
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
[tool.poetry]
name = "vss-tools"
homepage="https://github.com/COVESA/vss-tools"
description='COVESA Vehicle Signal Specification tooling.'
authors = ["COVESA VSS <[email protected]>"]
version = "6.0a0"
license = "Mozilla Public License 2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
rich = "^13.7.1"
pyyaml = "^6.0.1"
anytree = "^2.9.0"
deprecation = "^2.1.0"
graphql-core = "*"
rdflib = "^6.0.0"
importlib-metadata = "^7.0"
click = "^8.1.7"
rich-click = "^1.8.3"
pydantic = "^2.8.2"
[tool.poetry.group.dev.dependencies]
mypy = "*"
pytest = "*"
pytest-cov = "*"
types-setuptools = "*"
types-PyYAML = "*"
flake8 = "^6.0.0"
pre-commit = "*"
[tool.poetry.scripts]
vspec = "vss_tools.cli:cli"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
disable_error_code = "import-untyped"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I"]