forked from equinor/isar-anymal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (72 loc) · 1.87 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (72 loc) · 1.87 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
84
[build-system]
requires = ["setuptools>=64.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "isar-anymal"
authors = [{ name = "Equinor ASA", email = "fg_robots_dev@equinor.com" }]
description = "Integration and Supervisory control of Autonomous Robots - ANYmal implementation"
readme = "README.md"
requires-python = ">=3.14"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"alitra",
"isar>=2.2.0",
"numpy",
"opentelemetry-exporter-otlp>=1.38.0",
"protobuf",
"pydantic-settings",
"pydantic",
"requests"
]
dynamic = ["version"]
[project.urls]
repository = "https://github.com/equinor/isar-anymal.git"
[project.optional-dependencies]
dev = [
"azure-storage-blob",
"black",
"isort",
"mypy",
"pytest-dotenv",
"pytest-mock",
"pytest",
"ruff",
]
[tool.uv.sources]
isar = { path = "../isar", editable = true }
[tool.setuptools_scm]
# This section is empty but required for dynamic versioning.
[tool.setuptools.package-data]
"*" = ["*.json"]
[tool.pytest.ini_options]
testpaths = ["tests"]
log_cli = true
markers = [
"requires_private_test_data: tests requiring proprietary test data downloaded from Azure Blob Storage",
]
[tool.mypy]
no_strict_optional = true
no_site_packages = true
ignore_missing_imports = true
exclude = ["build"]
files = ["src", "tests"]
[tool.isort]
include_trailing_comma = true
line_length = 88
multi_line_output = 3
use_parentheses = true
[tool.black]
line_length = 88
[tool.ruff]
extend-exclude = ["ads_api"]
[tool.ruff.lint]
ignore = ["BLE001"]