-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
67 lines (55 loc) · 1.3 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
[metadata]
name = NaijaBet_Api
version = 0.2.15
author = graphitenerd
author_email = [email protected]
description = A wrapper around the API of Nigerias major betting sites
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/jayteealao/Naijabet_Api
project_urls =
Bug Tracker = https://github.com/jayteealao/Naijabet_Api/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
package_dir =
= .
packages =
NaijaBet_Api
NaijaBet_Api.bookmakers
NaijaBet_Api.utils
[options.package_data]
* = *.json
[options.data_files]
# data = NaijaBet_Api/utils/bet9ja_normalizer.json, NaijaBet_Api/utils/nairabet_normalizer.json, NaijaBet_Api/utils/betking_normalizer.json
# [options.packages.find]
# where = .
# exclude = tests
# python_requires = >=3.6
[flake8]
exclude =
.git,
__pycache__,
.pytest_cache,
venv
ignore =
# Put Error/Style codes here e.g. H301
max-line-length = 120
max-complexity = 10
[bandit]
targets: blueprint
[coverage:run]
branch = True
omit =
*/__main__.py
*/tests/*
*/venv/*
[coverage:report]
exclude_lines =
pragma: no cover
if __name__ == .__main__.:
[coverage:html]
directory = reports
[pylint]