forked from equinor/isar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
98 lines (89 loc) · 2.23 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[build-system]
requires = ["setuptools>=64.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "isar"
authors = [{ name = "Equinor ASA", email = "[email protected]" }]
description = "Integration and Supervisory control of Autonomous Robots"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"alitra>=1.1.3",
"azure-identity",
"azure-keyvault-secrets",
"azure-storage-blob",
"backoff",
"click",
"dacite",
"fastapi-azure-auth",
"fastapi",
"injector",
"numpy",
"opencensus-ext-azure",
"opencensus-ext-logging",
"opencensus-ext-requests",
"paho-mqtt",
"pydantic_settings",
"pydantic",
"PyJWT",
"python-dotenv",
"PyYAML",
"requests-toolbelt",
"requests",
"transitions",
"uvicorn",
]
dynamic = ["version"]
[project.scripts]
isar-start = "isar.script:start"
[project.urls]
repository = "https://github.com/equinor/isar.git"
[project.optional-dependencies]
dev = [
"black",
"flake8",
"mypy",
"myst-parser",
"pip-tools",
"pre-commit",
"pytest-dotenv",
"pytest-mock",
"pytest-xdist",
"pytest",
"requests-mock",
"sphinx",
]
[tool.setuptools_scm]
# This section is empty but required for dynamic versioning.
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--ignore=tests/integration"
log_cli = true
[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