-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
66 lines (57 loc) · 1.32 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "dasstore"
dynamic = ["version"]
description = "An Object Storage for Distributed Acoustic Sensing"
readme = "README.md"
license = {file= "LICENSE"}
requires-python = ">=3.8,<3.11"
authors = [
{ email = "niyiyu@uw.edu", name = "Yiyu Ni" },
]
keywords = [
"cloud-storage",
"seismology",
"data",
"distributed-acoustic-sensing",
"object-storage",
"s3",
"minio"
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
]
dependencies = [
"pandas>=1.5.3,<2.0.0",
"fsspec>=2023.4.0,<2024.0.0",
"s3fs==2023.4.0,<2024.0.0",
"zarr==2.14.2",
"tiledb==0.23.0",
"numpy<2.0.0"
]
[project.urls]
Homepage = "https://github.com/niyiyu/dasstore"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "dasstore/_version.py"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[project.optional-dependencies]
dev = [
"pytest==7.2.2",
"pytest-cov==4.1.0",
"memory-profiler==0.61",
"pre-commit==3.3.3",
]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
filter_files = true