-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (66 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
76 lines (66 loc) · 1.71 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "datareservoirio"
authors = [{ name = "4Subsea", email = "support@4subsea.com" }]
dynamic = ["version"]
description = "DataReservoir.io Python API"
readme = "README.rst"
license = { file = "LICENSE" }
requires-python = ">=3.11, <4"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"numpy",
"oauthlib",
"pandas < 3",
"pyarrow",
"requests",
"requests-oauthlib",
"importlib_resources",
"tenacity<8.5",
"urllib3 > 2",
"tqdm",
"azure-monitor-opentelemetry==1.6.12",
]
[project.urls]
"Homepage" = "https://github.com/4Subsea/drio-python"
"Bug Tracker" = "https://github.com/4Subsea/drio-python/issues"
"Documentation" = "https://docs.4insight.io/dataanalytics/reservoir/python/latest/"
[tool.setuptools.packages.find]
where = ["."]
include = ["datareservoirio*"]
namespaces = false
[tool.setuptools.dynamic]
version = { attr = "datareservoirio.__version__" }
[tool.pytest.ini_options]
pythonpath = [".", "src"]
markers = ["response_irrelevant"]
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = True
envlist =
py
docs
[testenv]
commands =
pytest --cov=datareservoirio --cov-report html:cov_html-{envname} ./tests
deps =
pytest
pytest-cov
[testenv:docs]
basepython = python3.12
commands = sphinx-build -W -b html -d {toxworkdir}/docs_doctree docs {toxworkdir}/docs_out
deps =
sphinx==5.3.0
pydata-sphinx-theme==0.11.0
myst_parser<2.0
"""