-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
89 lines (77 loc) · 1.8 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
[project]
name = "qvalve"
version = "1.0.4"
description = "Query Valve Main and Game Servers"
authors = [
{name = "Russel Lane", email = "[email protected]"},
]
license = {text = "MIT"}
readme = "README.md"
keywords = ["tf2", "team-fortress-2", "steam", "valve"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Games/Entertainment :: First Person Shooters"
]
requires-python = ">=3.10"
dependencies = [
"bootstrap-flask>=2.4.1",
"flask-table>=0.5.0",
"flask-wtf>=1.2.2",
"flask>=3.1.0",
"loguru>=0.7.2",
"pandas>=2.2.3",
"rlane-libcli>=1.0.8",
"steam>=1.4.4",
"wtforms>=3.2.1",
]
[project.urls]
Homepage = "https://github.com/russellane/qvalve"
[project.scripts]
qvalve = "qvalve.cli:main"
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"black>=24.10.0",
"flake8-bugbear>=24.10.31",
"flake8-pydocstyle>=0.2.4",
"flake8-pylint>=0.2.1",
"flake8-pytest-style>=2.0.0",
"flake8-simplify>=0.21.0",
"flake8>=7.1.1",
"isort>=5.13.2",
"pytest-cov>=6.0.0",
"pytest>=8.3.3",
]
[tool.black]
line-length = "97"
[tool.isort]
line_length = "97"
profile = "black"
[tool.pylint.format]
max-line-length = "97"
[tool.pylint.messages_control]
enable = [
"useless-suppression",
]
fail-on = [
# useless-suppression
"I0021",
]
good-names = [
"k", "v",
]
[tool.pydocstyle]
convention = "google"
add-ignore = [
# "D105", # pep257 numpy google # Missing docstring in magic method
"D105",
# "D202", # pep257 numpy google # No blank lines allowed after function docstring
"D202",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
# vim: set ts=4 sw=4 et: