-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
79 lines (69 loc) · 1.61 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
[build-system]
requires = ["setuptools >= 61.0", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "slkspec"
dynamic = ["version"]
description = "fsspec implementation for StrongLink tape archive"
readme = "README.md"
license = {text = "MIT License"}
authors = [{name = "Hauke Schulz", email = "haschulz@uw.edu"}]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
requires-python = ">=3.9"
dependencies = [
"fsspec>=0.9.0",
"pyslk>=2.3.0",
]
[project.entry-points."fsspec.specs"]
slk = "slkspec.SLKFileSystem"
[project.optional-dependencies]
tests = [
"zarr<3.0.0",
"mypy",
"black",
"dask",
"flake8",
"mock",
"netCDF4",
"pandas",
"pytest",
"pytest-env",
"pytest-cov",
"testpath",
"xarray"
]
preffs = [
"fastparquet",
"preffs @ git+https://github.com/d70-t/preffs.git@main",
"aiohttp"
]
[project.urls]
Homepage = "https://github.com/observingClouds/slkspec"
Issues = "https://github.com/observingClouds/slkspec/issues"
[tool.black]
target-version = ["py310"]
[tool.mypy]
files = ["slkspec/core.py"]
strict = false
warn_unused_ignores = true
warn_unreachable = true
show_error_codes = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
warn_redundant_casts = true
[tool.mypy-fsspec]
ignore_missing_imports = true
[tool.mypy-pyslk]
ignore_missing_imports = true
[tool.setuptools.packages]
find = {}
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "dirty-tag"