-
Notifications
You must be signed in to change notification settings - Fork 43
/
pyproject.toml
178 lines (157 loc) · 3.71 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "universal_pathlib"
license = {text = "MIT License"}
authors = [
{name = "Andrew Fulton", email = "[email protected]"},
]
description = "pathlib api extended to use fsspec backends"
maintainers = [
{name = "Andreas Poehlmann", email = "[email protected]"},
{name = "Norman Rzepka"},
]
requires-python = ">=3.8"
dependencies = [
"fsspec >=2022.1.0,!=2024.3.1",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 4 - Beta",
]
keywords = ["filesystem-spec", "pathlib"]
dynamic = ["version", "readme"]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[project.optional-dependencies]
tests = [
"pytest >=8",
"pytest-sugar >=0.9.7",
"pytest-cov >=4.1.0",
"pytest-mock >=3.12.0",
"pylint >=2.17.4",
"mypy >=1.10.0",
"pytest-mypy-plugins >=3.1.2",
"packaging",
]
dev = [
"adlfs",
"aiohttp",
"requests",
"gcsfs",
"s3fs",
"moto[s3,server]",
"webdav4[fsspec]",
"paramiko",
"wsgidav",
"cheroot",
# "hadoop-test-cluster",
# "pyarrow",
"pydantic",
"pydantic-settings",
"smbprotocol",
"typing_extensions; python_version<'3.11'",
]
[project.urls]
Homepage = "https://github.com/fsspec/universal_pathlib"
Changelog = "https://github.com/fsspec/universal_pathlib/blob/main/CHANGELOG.md"
[tool.setuptools]
include-package-data = false
[tool.setuptools.package-data]
upath = ["py.typed"]
[tool.setuptools.packages.find]
exclude = [
"upath.tests",
"upath.tests.*",
]
namespaces = false
[tool.setuptools_scm]
write_to = "upath/_version.py"
version_scheme = "post-release"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
force-exclude = '''
(
^/upath/tests/pathlib/_test_support\.py
|^/upath/tests/pathlib/test_pathlib_.*\.py
)
'''
[tool.isort]
profile = "black"
known_first_party = ["upath"]
force_single_line = true
line_length = 88
[tool.pytest.ini_options]
addopts = "-ra -m 'not hdfs' -p no:pytest-mypy-plugins"
markers = [
"hdfs: mark test as hdfs",
"pathlib: mark cpython pathlib tests",
]
[tool.coverage.run]
branch = true
source = ["upath"]
[tool.coverage.report]
show_missing = true
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
"if typing.TYPE_CHECKING:",
"if TYPE_CHECKING:",
"raise NotImplementedError",
"raise AssertionError",
"@overload",
]
[tool.mypy]
# Error output
show_column_numbers = false
show_error_codes = true
show_error_context = true
show_traceback = true
pretty = true
check_untyped_defs = false
# Warnings
warn_no_return = true
warn_redundant_casts = true
warn_unreachable = true
files = ["upath"]
exclude = "^notebooks|^venv.*|tests.*|^noxfile.py"
[[tool.mypy.overrides]]
module = "fsspec.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "webdav4.*"
ignore_missing_imports = true
[tool.pylint.format]
max-line-length = 88
[tool.pylint.message_control]
enable = ["c-extension-no-member", "no-else-return"]
[tool.pylint.variables]
dummy-variables-rgx = "_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_"
ignored-argument-names = "_.*|^ignored_|^unused_|args|kwargs"
[tool.codespell]
ignore-words-list = " "
[tool.bandit]
exclude_dirs = ["tests"]
skips = ["B101"]