-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
121 lines (105 loc) · 2.73 KB
/
pyproject.toml
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
117
118
119
120
121
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "valo_api_official"
version = "1.0.1"
description = "Valorant API Wrapper"
readme = "README.md"
authors = ["Manuel Raimann <[email protected]>"]
license = "MIT"
repository = "https://github.com/raimannma/ValorantAPIOfficial"
homepage = "https://github.com/raimannma/ValorantAPIOfficial"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.28.1"
msgspec = ">=0.12,<0.19"
[tool.poetry.dev-dependencies]
bandit = "^1.7.7"
black = {version = "^24.4.0", allow-prereleases = true}
darglint = "^1.8.1"
isort = {extras = ["colors"], version = "^5.13.2"}
mypy = "^1.8"
mypy-extensions = "^1.0.0"
pre-commit = "^3.3.1"
pydocstyle = "^6.3.0"
pylint = "^3.0.3"
pytest = "^8.0.1"
hypothesis = "^6.100.1"
pyupgrade = "^3.4.0"
safety = "^3.1.0"
pytest-html = "^3.2.0"
pytest-cov = "^5.0.0"
Sphinx = "^7.1.2"
sphinxcontrib-applehelp = "^1.0.4"
sphinxcontrib-devhelp = "^1.0.2"
sphinxcontrib-htmlhelp = "^2.0.1"
sphinxcontrib-jsmath = "^1.0.1"
sphinxcontrib-qthelp = "^1.0.3"
sphinxcontrib-serializinghtml = "^1.1.5"
sphinx-rtd-theme = "^2.0.0"
sphinx-autodoc-typehints = "^2.0"
autodocsumm = "^0.2.12"
responses = "^0.25.0"
pytest-parallel = "^0.1.1"
pytest-split = "^0.8.2"
tomlkit = "<0.12.4"
colorama = "^0.4.6"
[tool.black]
target-version = ["py38"]
line-length = 88
color = true
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| env
| venv
)/
'''
[tool.isort]
py_version = 38
line_length = 88
known_typing = ["typing", "types", "typing_extensions", "mypy", "mypy_extensions"]
sections = ["FUTURE", "TYPING", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
include_trailing_comma = true
profile = "black"
multi_line_output = 3
indent = 4
color_output = true
[tool.pytest.ini_options]
norecursedirs =["hooks", "*.egg", ".eggs", "dist", "build", "docs", ".tox", ".git", "__pycache__"]
doctest_optionflags = ["NUMBER", "NORMALIZE_WHITESPACE", "IGNORE_EXCEPTION_DETAIL"]
addopts = [
"--strict-markers",
"--tb=short",
"--doctest-modules",
"--doctest-continue-on-failure",
]
[tool.coverage.run]
source = ["tests"]
[coverage.paths]
source = "valo_api_official"
[coverage.run]
branch = true
[coverage.report]
fail_under = 50
show_missing = true