-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.cfg
99 lines (91 loc) · 2.51 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
99
[metadata]
name = fs.smbfs
version = file: fs/smbfs/_version.txt
author = Martin Larralde
author-email = [email protected]
home-page = https://github.com/althonos/fs.smbfs
description = Pyfilesystem2 over SMB using pysmb
long-description = file: README.md
long_description_content_type = text/markdown
license = MIT
license-file = COPYING
platform = any
keywords = filesystem, Pyfilesystem2, smb, cifs, samba
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
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
Programming Language :: Python :: 3.11
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Filesystems
Topic :: System :: Networking
project_urls =
Bug Tracker = https://github.com/althonos/fs.smbfs/issues
Changelog = https://github.com/althonos/fs.smbfs/blob/master/CHANGELOG.md
Coverage = https://codecov.io/gh/althonos/fs.smbfs
Builds = https://github.com/althonos/fs.smbfs/actions
[options]
zip_safe = true
include_package_data = true
python_requires = >= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*
packages = fs.smbfs, fs.opener
test_suite = tests
setup_requires =
setuptools >=38.3.0
install_requires =
configparser ~= 3.2 ; python_version < '3'
fs ~=2.2
pysmb >=1.1.22, !=1.1.26, !=1.1.29, <=1.2.9.1
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 =
smb = fs.opener.smbfs:SMBOpener
cifs = fs.opener.smbfs:SMBOpener
[options.package_data]
fs.smbfs = _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.smbfs, fs.opener.smbfs
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
processes = 1
[pydocstyle]
inherit = false
ignore = D100,D200,D203,D213,D406,D407
match-dir = (?!tests)[^\.].*