-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (62 loc) · 1.66 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
[project]
name = "dataversefs"
version = "0.1.0"
description = "Read-only fsspec filesystem backend for Borealis Dataverse"
readme = "README.md"
authors = [{ name = "Martin Heesemann", email = "mheesema@uvic.ca" }]
requires-python = ">=3.12"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
]
dependencies = [
"fsspec",
"aiohttp",
"requests>=2.32.5",
"loguru>=0.7",
]
[dependency-groups]
dev = [
"pytest",
"pytest-asyncio",
"aioresponses",
"ruff",
"mkdocs-material",
"mkdocs-jupyter",
"jupyter",
"python-dotenv>=1.2.2",
"xarray>=2026.2.0",
"zarr>=3.1.5",
"numpy>=2.4.3",
"matplotlib>=3.10.8",
"responses>=0.26.0",
]
fakequake = [
"obspy>=1.4",
"pandas>=2.0",
"pillow>=11.0",
]
[project.urls]
Homepage = "https://github.com/OceanNetworksCanada/dataversefs"
Repository = "https://github.com/OceanNetworksCanada/dataversefs"
Documentation = "https://oceannetworkscanada.github.io/dataversefs"
"Bug Tracker" = "https://github.com/OceanNetworksCanada/dataversefs/issues"
[project.entry-points."fsspec.specs"]
dataverse = "dataversefs:DataverseFileSystem"
[build-system]
requires = ["uv_build>=0.9.14,<0.10.0"]
build-backend = "uv_build"
[tool.ruff]
target-version = "py312"
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
testpaths = ["tests"]
pythonpath = ["."]