forked from althonos/fs.sshfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
98 lines (90 loc) · 2.48 KB
/
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
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
[metadata]
name = fs.sshfs
version = file: fs/sshfs/_version.txt
author = Martin Larralde
author-email = [email protected]
home-page = https://github.com/althonos/fs.sshfs
description = Pyfilesystem2 over SSH using paramiko
long-description = file: README.md
long_description_content_type = text/markdown
license = LGPLv2+
license-file = COPYING
platform = any
keywords = filesystem, Pyfilesystem2, ssh, sftp, paramiko
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Internet
Topic :: Security
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Filesystems
project_urls =
Bug Tracker = https://github.com/althonos/fs.sshfs/issues
Changelog = https://github.com/althonos/fs.sshfs/blob/master/CHANGELOG.md
Coverage = https://codecov.io/gh/althonos/fs.sshfs
Builds = https://github.com/althonos/fs.sshfs/actions
[options]
zip_safe = true
include_package_data = true
python_requires = >= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*
packages = fs.sshfs, fs.opener
test_suite = tests
setup_requires =
setuptools >=38.3.0
install_requires =
property-cached ~=1.6
configparser ~=3.2 ; python_version < '3'
fs ~=2.2
paramiko ~=2.0
six ~=1.10
setuptools >=38.3.0
tests_require =
docker ~=3.6
mock ~=2.0 ; python_version < '3.4'
semantic_version ~=2.6
[bdist_wheel]
universal = 1
[options.entry_points]
fs.opener =
ssh = fs.opener.sshfs:SSHOpener
sftp = fs.opener.sshfs:SSHOpener
[options.package_data]
fs.sshfs = _version.txt
[coverage:report]
include = fs/*
show_missing = true
exclude_lines =
pragma: no cover
@abc.abstractmethod
@abc.abstractproperty
raise NotImplementedError
return NotImplemented
if six.PY3
if six.PY2
[nosetests]
verbosity = 2
with-coverage = true
cover-xml = true
cover-package = fs.sshfs, fs.opener.sshfs
with-doctest = true
doctest-extension = .rst
rednose = true
[green]
file-pattern = test_*.py
verbose = 2
no-skip-report = true
quiet-stdout = true
run-coverage = true
[pydocstyle]
inherit = false
ignore = D100,D200,D203,D213,D406,D407