-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (34 loc) · 851 Bytes
/
pyproject.toml
File metadata and controls
42 lines (34 loc) · 851 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
[project]
name = "ToolBOSCore"
version = "5.2.0"
description = "BST.py makes native and cross-compilations easier when using the SIT"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Honda Research Institute Europe GmbH", email = "info@honda-ri.de" },
]
license = { text = "BSD-3-Clause" }
dependencies = [
"dill>=0.3.9",
"mako>=1.3.9",
"pytest>=8.3.5",
"termcolor>=2.5.0",
]
packages = [ { include = "ToolBOSCore", from = "src" } ]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 79
[tool.ruff.lint]
[tool.ruff.format]
[tool.uv]
allow-insecure-host = ["package-cache.honda-ri.de"]
package = true
[[tool.uv.index]]
url = "https://package-cache.honda-ri.de/repository/pypi-proxy/simple"
default = true
[dependency-groups]
dev = [
"ruff>=0.9.4",
]