This repository has been archived by the owner on Dec 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
76 lines (70 loc) · 1.66 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
[metadata]
name = fs.expose
version = 0.1.0
author = Martin Larralde
author-email = [email protected]
home-page = https://github.com/althonos/fs.expose
description = Namespace package and CLI of fs.expose modules
long-description = file: README.rst
license = MIT
license-file = COPYING
platform = any
keywords = filesystem, Pyfilesystem2, expose, cli
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
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 :: 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.expose, fs.expose.http
test_suite = tests
setup_requires = setuptools
install_requires =
fs ~=2.0.7
tests_require =
fs.expose[test]
[bdist_wheel]
universal = 1
[options.extras_require]
fuse =
fusepy
dev =
docutils
Pygments
codecov
green
coverage
test =
%(fuse)s
tenacity
mock ; python_version < "3.3"
[coverage:report]
show_missing = true
exclude_lines =
pragma: no cover
@abc.abstractmethod
@abc.abstractproperty
raise NotImplementedError
return NotImplemented
if six.PY3
if six.PY2
[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