-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
107 lines (94 loc) · 2.47 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
99
100
101
102
103
104
105
106
107
[project]
name = "multidimio"
dynamic = [ "version", "classifiers" ]
description = "Cloud-native, scalable, and user-friendly multi dimensional energy data!"
authors = [{ name = "Altay Sansal", email = "altay.sansal@tgs.com" }]
license = "Apache-2.0"
readme = "README.md"
keywords = ["mdio", "multidimio", "seismic", "wind", "data"]
requires-python = ">=3.10,<3.13"
dependencies = [
"click (>=8.1.7,<9.0.0)",
"click-params (>=0.5.0,<0.6.0)",
"zarr (>=2.18.2,<3.0.0)",
"dask (>=2024.12.0)",
"tqdm (>=4.67.0,<5.0.0)",
"psutil (>=6.1.0,<7.0.0)",
"fsspec (>=2024.10.0)",
"segy (>=0.3.1,<0.4.0)",
"rich (>=13.9.4,<14.0.0)"
]
[project.optional-dependencies]
cloud = [
"s3fs (>=2024.10.0)",
"gcsfs (>=2024.10.0)",
"adlfs (>=2024.7.0)"
]
distributed = [
"distributed (>=2024.12.0)",
"bokeh (>=3.4.2,<4.0.0)",
]
lossy = ["zfpy (>=1.0.1,<2.0.0)"]
[project.urls]
homepage = "https://mdio.dev/"
repository = "https://github.com/TGSAI/mdio-python"
documentation = "https://mdio-python.readthedocs.io"
[project.scripts]
mdio = "mdio.__main__:main"
[tool.poetry]
packages = [{ include = "mdio", from = "src" }]
version = "0.8.5"
classifiers = ["Development Status :: 4 - Beta"]
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
coverage = {version = "^7.6.7", extras = ["toml"]}
darglint = "^1.8.1"
flake8 = "^7.1.0"
flake8-bandit = "^4.1.1"
flake8-bugbear = "^24.4.26"
flake8-docstrings = "^1.7.0"
flake8-rst-docstrings = "^0.3.0"
furo = ">=2024.8.6"
isort = "^5.13.2"
mypy = "^1.13.0"
pep8-naming = "^0.14.1"
pre-commit = "^4.0.1"
pre-commit-hooks = "^5.0.0"
pytest = "^8.3.3"
pytest-dependency = "^0.6.0"
pyupgrade = "^3.19.0"
safety = "^3.2.3"
sphinx-autobuild = ">=2024.10.3"
sphinx-click = "^6.0.0"
sphinx-copybutton = "^0.5.2"
typeguard = "^4.4.1"
xdoctest = {version = "^1.2.0", extras = ["colors"]}
myst-parser = "^3.0.1"
Pygments = "^2.18.0"
Sphinx = "^7.4.7"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
tests = ["tests", "*/tests"]
[tool.coverage.run]
branch = true
source = ["mdio", "tests"]
[tool.coverage.report]
show_missing = true
fail_under = 80
[tool.isort]
profile = "black"
force_single_line = true
lines_after_imports = 2
[tool.mypy]
strict = true
warn_unreachable = true
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
[[tool.mypy.overrides]]
module = ["zarr"]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core", "fastentrypoints"]
build-backend = "poetry.core.masonry.api"