forked from equinor/sara-timeseries
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.62 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (53 loc) · 1.62 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
[build-system]
requires = ["setuptools>=64.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "sara-omnia"
authors = [{ name = "Equinor ASA", email = "fg_robots_dev@equinor.com" }]
description = "Component for uploading datapoints to Omnia Timeseries"
readme = "README.md"
requires-python = ">=3.12"
license-files = ["LICENSE"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"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",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"azure-identity",
"azure-keyvault-secrets",
"pydantic",
"loguru",
"python-dotenv",
"fastapi",
"uvicorn",
"omnia_timeseries @ git+https://github.com/equinor/omnia-timeseries-python.git@main",
]
dynamic = ["version"]
[project.urls]
repository = "https://github.com/equinor/omnia-sara.git"
[project.optional-dependencies]
dev = ["black", "httpx", "mypy", "pip-tools", "pytest", "ruff"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
[tool.mypy]
ignore_missing_imports = true
no_warn_return_any = true
warn_unused_ignores = false
strict_optional = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
[tool.black]
line_length = 88