-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
61 lines (52 loc) · 1.49 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
[build-system]
requires = ["setuptools>=77", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "sshfs"
description = "SSH Filesystem -- Async SSH/SFTP backend for fsspec"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.14",
]
dynamic = ["version"]
dependencies = [
"fsspec>=2021.8.1",
"asyncssh>=2.11.0,<3",
]
[project.optional-dependencies]
bcrypt = ["asyncssh[bcrypt]"]
fido2 = ["asyncssh[fido2]"]
gssapi = ["asyncssh[gssapi]"]
libnacl = ["asyncssh[libnacl]"]
pkcs11 = ["asyncssh[python-pkcs11]"]
pyopenssl = ["asyncssh[pyOpenSSL]"]
pywin32 = ["asyncssh[pywin32]"]
[project.urls]
Issues = "https://github.com/fsspec/sshfs/issues"
Source = "https://github.com/fsspec/sshfs"
[project.entry-points."fsspec.specs"]
ssh = "sshfs.spec:SSHFileSystem"
sftp = "sshfs.spec:SSHFileSystem"
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*"]
namespaces = false
[tool.setuptools_scm]
[tool.black]
line-length = 79
target-version = ['py39']
[tool.isort]
atomic = true
force_grid_wrap = 0
include_trailing_comma = true
multi_line_output = 3
use_parentheses = true