-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.28 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "alune"
version = "0.1.8"
authors = [
{name = "akshualy"},
{name = "Detergent13"},
{name = "Kyrluckechuck"},
]
description = "Teamfight Tactics (TFT) bot for the mobile version, to farm events/tokens."
readme = "README.md"
requires-python = ">= 3.12"
dependencies = [
"adb-shell[async]==0.4.4",
"numpy==1.26.4",
"opencv-python==4.10.0.84",
"google-play-scraper==1.2.7",
"loguru==0.7.2",
"ruamel.yaml==0.18.6",
"psutil==6.0.0",
"keyboard==0.13.5",
"imutils==0.5.4",
"av==14.0.0",
]
[project.optional-dependencies]
dev = [
"black==24.4.0",
"flake8==7.0.0",
"isort==5.13.2",
"pylint==3.1.0",
"pyinstaller==6.6.0",
]
[project.urls]
Repository = "https://github.com/TeamFightTacticsBots/Alune.git"
"Bug Tracker" = "https://github.com/TeamFightTacticsBots/Alune/issues"
[tool.setuptools]
py-modules = ["alune"]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
force_single_line = true
force_sort_within_sections = true
lexicographical = true
single_line_exclusions = ["typing"]
order_by_type = false
group_by_package = true
skip_glob = [ "alune-venv/*" ]
[tool.pytest.ini_options]
addopts = "--pylint"