forked from althonos/fs.sshfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
90 lines (82 loc) · 2 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
[metadata]
name = fs.sshfs
version = 0.8.0
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.rst
license = LGPL-2.1+
license-file = COPYING
platform = any
keywords = filesystem, Pyfilesystem2, ssh, sftp, paramiko
classifiers =
Development Status :: 4 - Beta
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.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Topic :: Internet
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Filesystems
[options]
zip_safe = true
include_package_data = true
python_requires = >= 2.7, != 3.0.*, != 3.1.*, != 3.2.*
packages = fs.sshfs, fs.opener
test_suite = tests
setup_requires = setuptools
install_requires =
six ~=1.10
paramiko ~=2.0
fs ~=2.0.7
configparser ~= 3.2 ; python_version < '3'
tests_require =
fs.sshfs[test]
[bdist_wheel]
universal = 1
[options.extras_require]
dev =
docutils
Pygments
codecov
test =
green
coverage
docker
[options.entry_points]
fs.opener =
ssh = fs.opener.sshfs:SSHOpener
sftp = fs.opener.sshfs:SSHOpener
[coverage:report]
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