-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
103 lines (91 loc) · 2.52 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
100
101
102
103
[metadata]
name = jinja2-fsloader
version = file: jinja2_fsloader/_version.txt
author = Martin Larralde
author-email = [email protected]
home-page = https://github.com/althonos/jinja2-fsloader/
description = A Jinja2 template loader using PyFilesystem2
long-description = file: README.rst
license = MIT
license-file = COPYING
platform = any
keywords = jinja2, template, loader, pyfilesystem2, pyfilesystem, fs
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.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: System :: Filesystems
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Text Processing :: Markup :: HTML
project_urls =
Bug Reports = https://github.com/althonos/jinja2-fsloader
Pyfilesystem2 documentation = https://docs.pyfilesystem.org
[coverage:run]
include = jinja2_fsloader/*.py
[options]
zip_safe = true
include_package_data = true
python_requires = >= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*, != 3.5.1
packages = find:
test_suite = tests
setup_requires =
setuptools >=39.2
install_requires =
fs ~=2.1
jinja2 ~=2.0
tests_require =
contexter ~=0.1.4
mock
[bdist_wheel]
universal = 1
[check]
metadata = true
restructuredtext = true
strict = true
[sdist]
formats = zip
[coverage:report]
show_missing = true
exclude_lines =
pragma: no cover
if typing.TYPE_CHECKING:
@abc.abstractmethod
@abc.abstractproperty
raise NotImplementedError
return NotImplemented
[green]
file-pattern = test_*.py
verbose = 2
no-skip-report = true
quiet-stdout = true
run-coverage = true
[pydocstyle]
match-dir = (?!tests)(?!resources)(?!docs)[^\.].*
match = (?!test)(?!setup)[^\._].*\.py
inherit = false
ignore = D200, D203, D213, D406, D407 # Google conventions
[flake8]
max-line-length = 99
doctests = True
exclude = .git, .eggs, __pycache__, tests/, docs/, build/, dist/
ignore = D200, D203, D213, D406, D407 # Google conventions
[mypy]
ignore_missing_imports = true
[mypy-moclo.*]
disallow_any_decorated = false
disallow_any_generics = false
disallow_any_unimported = true
disallow_subclassing_any = true
disallow_untyped_calls = false
disallow_untyped_defs = false
ignore_missing_imports = false
warn_unused_ignores = false
warn_return_any = false