-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.cfg
117 lines (97 loc) · 2.17 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
104
105
106
107
108
109
110
111
112
113
114
115
116
[bumpversion]
current_version = 0.6.0
commit = True
[bumpversion:file:belvo/__init__.py]
[metadata]
name = belvo-python
description = Bank Connectivity Simplified (Belvo Python SDK)
author = Belvo Finance, S.L.
author_email = hello@belvo.co
url = https://github.com/belvo-finance/belvo-python
download_url = https://github.com/belvo-finance/belvo-python/tarball/master
keywords = api, belvo, sdk, finances, openbanking
classifiers =
Development Status :: 3 - Alpha
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Dynamic Content
[options]
packages = find:
include_package_data = True
zip_safe = False
[options.packages.find]
exclude = tests
[bdist_wheel]
universal = 1
[check-manifest]
ignore =
.travis.yml
.tox
tests*
PKG-INFO
*.egg-info
*.egg-info/*
setup.cfg
.gitignore
[tool:isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 100
known_first_party = belvo
default_section = THIRDPARTY
[flake8]
exclude = .tox,*.egg,build,data
max_line_length = 100
[tox:tox]
envlist =
py{36,37,38},
linting
[testenv]
whitelist_externals = make
setenv =
PYTHONPATH = {toxinidir}
PYTHONWARNINGS = once
deps =
-rrequirements/testing.txt
commands =
check-manifest -u -v
python setup.py check -m -s
make test
[testenv:linting]
commands = make linting
deps =
-rrequirements/linting.txt
[travis]
python =
3.6: py36, linting
[coverage:run]
source = belvo
branch = True
[coverage:report]
show_missing = True
skip_covered = True
omit =
[tool:pytest]
addopts = --cov=belvo --cov-config=setup.cfg --no-cov-on-fail -vvsx
[mypy]
python_version = 3.7
warn_return_any = False
warn_unused_configs = True
show_error_codes = True
pretty = True
[mypy-pytest]
ignore_missing_imports = True
[mypy-setuptools]
ignore_missing_imports = True
[mypy-freezegun]
ignore_missing_imports = True