forked from fsspec/gcsfs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (74 loc) · 2.36 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (74 loc) · 2.36 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
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["hatchling>=1.27.0", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "gcsfs"
dynamic = ["version"]
description = "Convenient Filesystem interface over GCS"
readme = "README.md"
license = "BSD-3-Clause"
license-files = ["LICENSE.txt"]
requires-python = ">=3.10"
maintainers = [{ name = "Martin Durant", email = "mdurant@anaconda.com" }]
keywords = ["google-cloud-storage", "gcloud", "file-system"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"aiohttp!=4.0.0a0,!=4.0.0a1,>=3.9.0",
"decorator>4.1.2",
"fsspec>=2026.6.0",
"google-auth>=1.2",
"google-auth-oauthlib",
"google-cloud-storage>=3.11.0",
"google-cloud-storage-control",
"requests",
]
[project.optional-dependencies]
gcsfuse = ["fusepy"]
crc = ["crcmod"]
dev = [
"flake8",
"isort",
"pytest",
"pytest-asyncio",
"pytest-timeout",
"pytest-cov",
"pytest-subtests",
"pytest-xdist",
]
[project.urls]
Homepage = "https://github.com/fsspec/gcsfs"
Documentation = "https://gcsfs.readthedocs.io"
Repository = "https://github.com/fsspec/gcsfs"
[tool.hatch.version]
source = "vcs"
raw-options = { 'version_scheme' = 'post-release' }
[tool.hatch.build]
exclude = [
"/gcsfs/tests",
"/gcsfs/tests/**",
]
[tool.hatch.build.hooks.vcs]
version-file = "gcsfs/_version.py"
[tool.pytest.ini_options]
addopts = "--color=yes --timeout=1800"
log_cli = false
log_cli_level = "DEBUG"
markers = [
"requires_real_gcs: mark test as requiring real Google Cloud Storage",
"requires_hns: mark test as requiring Hierarchical Namespace (HNS) bucket support",
"requires_rapid: mark test as requiring zonal (Rapid) bucket support",
]
[tool.isort]
profile = "black"
known_first_party = ["prepare_release"]
known_third_party = ["aiohttp", "click", "datasets", "decorator", "fsspec", "fuse", "google", "google_auth_oauthlib", "lightning", "metrics", "numpy", "prettytable", "psutil", "pytest", "pytest_asyncio", "requests", "resource_monitor", "torch", "transformers", "yaml"]