-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.cfg
33 lines (30 loc) · 883 Bytes
/
setup.cfg
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
[metadata]
name = sshfs
description = SSH Filesystem -- Async SSH/SFTP backend for fsspec
license = Apache License 2.0
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
install_requires =
fsspec>=2021.8.1
asyncssh>=2.11.0,<3
packages = find:
[options.extras_require]
bcrypt = asyncssh[bcrypt]
fido2 = asyncssh[fido2]
gssapi = asyncssh[gssapi]
libnacl = asyncssh[libnacl]
pkcs11 = asyncssh[python-pkcs11]
pyopenssl = asyncssh[pyOpenSSL]
pywin32 = asyncssh[pywin32]
[options.entry_points]
fsspec.specs =
ssh = sshfs.spec:SSHFileSystem
sftp = sshfs.spec:SSHFileSystem