-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (36 loc) · 1.01 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
[tool.poetry]
name = "pyetp"
version = "0.0.0"
description = "Interface with OSDU RDDMS using ETP protocol"
authors = ["Adam Cheng <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/equinor/pyetp"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
]
[tool.poetry.dependencies]
python = ">=3.9, <3.13"
numpy = "^1.26.3"
websockets = "^12.0"
lxml = ">=4.9.4, <6.0"
pydantic = "^1.10"
redis = "^5.0.1"
async-lru = "^2.0.4"
async-timeout = { version = "^5.0", python = "<3.11" }
etpproto = "^1.0.5"
resqpy = ">4.16.0, <5.2"
pyarrow = "^15.0.0" # added to fix pandas deprecated warning in xtgeo
xtgeo = "^3.8.0"
xsdata = "^24.3.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.4"
pytest-asyncio = "^0.23.4"
fakeredis = "^2.21.0"
pytest-cov = "^4.1.0"
[tool.pytest.ini_options]
addopts = "-ra -v --color=yes"
testpaths = ["tests"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"