-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
114 lines (103 loc) · 2.91 KB
/
pyproject.toml
File metadata and controls
114 lines (103 loc) · 2.91 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[tool.poetry]
name = "simvue"
version = "1.1.4"
description = "Simulation tracking and monitoring"
authors = ["Simvue Development Team <info@simvue.io>"]
license = "Apache v2"
readme = "README.md"
homepage = "https://simvue.io"
repository = "https://github.com/simvue-io/python-api"
documentation = "https://docs.simvue.io"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"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 :: System :: Monitoring",
"Topic :: Utilities",
"Typing :: Typed"
]
keywords = [
"tracking",
"monitoring",
"metrics",
"alerting",
"metrics-gathering"
]
[tool.poetry.dependencies]
python = "^3.10,<3.14"
dill = "^0.3.7"
requests = "^2.31.0"
msgpack = "^1.0.7"
tenacity = ">=8.2.3,<10.0.0"
PyJWT = "^2.8.0"
psutil = ">=5.9.8,<7.0.0"
pydantic = "^2.5.3"
pandas = "^2.2.0"
plotly = {version = ">=5.18,<7.0", optional = true}
matplotlib = {version = "^3.8.2", optional = true}
typing_extensions = { version = "^4.11.0", python = "<3.10" }
toml = "^0.10.2"
click = "^8.1.7"
gitpython = "^3.1.43"
humanfriendly = "^10.0"
tabulate = "^0.9.0"
randomname = "^0.2.1"
codecarbon = "^2.7.1"
numpy = "^2.1.2"
semver = "^3.0.2"
[tool.poetry.extras]
plot = ["matplotlib", "plotly"]
[tool.poetry.scripts]
simvue_sender = "simvue.bin.sender:run"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-dependency = "^0.6.0"
ruff = ">=0.5.0,<0.10.0"
pytest-cov = ">=4.1,<7.0"
pytest-mock = "^3.14.0"
pytest-sugar = "^1.0.0"
pytest-xdist = "^3.6.1"
jinja2 = "^3.1.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[tool.ruff]
lint.extend-select = ["C901", "T201"]
lint.mccabe.max-complexity = 11
extend-exclude = ["tests", "examples", "notebooks"]
[tool.pytest.ini_options]
addopts = "-p no:warnings --no-cov -n 0"
testpaths = [
"tests"
]
markers = [
"client: tests of Simvue client",
"converters: tests for Simvue object converters",
"dispatch: test data dispatcher",
"run: test the simvue Run class",
"utilities: test simvue utilities module",
"scenario: test scenarios",
"executor: tests of executors",
"config: tests of simvue configuration",
"api: tests of RestAPI functionality",
"unix: tests for UNIX systems only",
"metadata: tests of metadata gathering functions",
"proxies: tests for remote/offline Simvue proxies"
]
[tool.interrogate]
ignore-init-method = true
fail-under = 95
verbose = 1
exclude = ["docs", "tests"]