-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
132 lines (116 loc) · 2.3 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
[build-system]
requires = [
"poetry-core~=2.0"
]
build-backend = "poetry.core.masonry.api"
[project]
name = "multi-storage-client"
version = "0.14.1"
description = "Unified high-performance Python client for object and file stores."
authors = [
{ name = "NVIDIA Multi-Storage Client Team" }
]
license = "Apache-2.0"
readme = "README.md"
requires-python = "~=3.9"
dependencies = [
"datasketches~=5.1",
"filelock~=3.14",
"jsonschema~=4.0",
"opentelemetry-api~=1.24",
"opentelemetry-sdk~=1.24",
"opentelemetry-exporter-otlp-proto-http~=1.24",
"python-dateutil~=2.8",
"pyyaml~=6.0.1"
]
[project.urls]
source = "https://github.com/NVIDIA/multi-storage-client"
documentation = "https://nvidia.github.io/multi-storage-client/"
[project.optional-dependencies]
# Observability.
msal = [
"msal~=1.31.1"
]
# Storage providers.
aistore = [
"aistore~=1.8"
]
azure-storage-blob = [
"azure-storage-blob~=12.17"
]
boto3 = [
"boto3~=1.20,<1.36.0"
]
google-cloud-storage = [
"google-cloud-storage~=2.3"
]
oci = [
"oci~=2.69.0"
]
# Higher-level libraries.
fsspec = [
"fsspec>=2023.9.0"
]
numpy = [
"numpy~=2.0"
]
torch = [
"torch~=2.3"
]
xarray = [
"xarray>=2024.07.0"
]
zarr = [
"zarr~=2.15"
]
[dependency-groups]
dev = [
"pip-licenses~=5.0",
"types-PyYAML~=6.0.1",
"types-python-dateutil~=2.8",
"types-requests~=2.25",
"pytest~=8.2",
"pytest-asyncio~=0.24",
"pytest-forked~=1.4",
"sphinx~=7.4.7",
"sphinx-copybutton~=0.5.1",
"sphinx-pyproject~=0.3",
"furo>=2024.8.6"
]
[project.scripts]
msc-benchmark = "multistorageclient.commands.msc_benchmark:main"
[project.entry-points."fsspec.specs"]
msc = "multistorageclient.contrib.async_fs.MultiAsyncFileSystem"
[tool.pip-licenses]
format = "markdown"
order = "license"
output-file = ".licenses.md"
with-urls = true
[tool.poetry]
packages = [
{ include = "multistorageclient", from = "src" }
]
[tool.pyright]
include = [
"src",
"tests"
]
[tool.pytest.ini_options]
testpaths = [
"tests/unit"
]
[tool.ruff]
indent-width = 4
line-length = 120
[tool.ruff.format]
docstring-code-format = true
indent-style = "space"
[tool.ruff.lint]
fixable = [
"ALL"
]
unfixable = []
[tool.uv]
python-downloads = "never"
python-preference = "only-system"
resolution = "lowest-direct"