forked from TLNBS2405/heihachi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
76 lines (70 loc) · 1.51 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "heihachi"
version = "2.2.0"
description = "A Discord bot to receive Tekken 8 frame data primarily from Wavu Wiki"
readme = "README.md"
authors = [
{ name = "TLNBS2405", email = "[email protected]" },
{ name = "Abhijeet Krishnan", email = "[email protected]" },
]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">= 3.10"
dependencies = [
"discord.py",
"beautifulsoup4",
"Requests",
"lxml",
"fast-autocomplete[levenshtein]",
"thefuzz"
]
[project.urls]
Repository = "https://github.com/TLNBS2405/heihachi"
"Bug Tracker" = "https://github.com/TLNBS2405/heihachi/issues"
[project.optional-dependencies]
dev = [
"pre-commit",
"mypy",
"pytest",
"types-requests"
]
[tool.ruff]
target-version = "py310"
line-length = 127
src = ["src"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true
warn_redundant_casts = true
warn_unreachable = true
pretty = true
exclude = [
"build",
"dist",
"venv",
"tests",
]
files = [
"src/**/*.py",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = [
"-ra -q",
"--import-mode=importlib"
]
testpaths = [
"src/**/tests"
]
console_output_style = "progress"