-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
75 lines (67 loc) · 1.59 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
[project]
name = "lyricspybot"
version = "0.0.0"
description = "This bot displays the lyrics of the songs according to your search."
readme = "README.md"
dependencies = [
"lyricspy @ https://github.com/AmanoTeam/lyricspy/archive/master.zip",
"pillow",
"playwright",
"hydrogram @ https://github.com/hydrogram/hydrogram/archive/dev.zip",
"httpx[http2]",
"spotipy",
"telegraph",
"tgcrypto",
"yarl",
"beautifulsoup4",
]
requires-python = ">=3.10"
authors = [{ name = "Amano LLC", email = "[email protected]" }]
license = { text = "MIT" }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[project.urls]
homepage = "https://github.com/AmanoTeam/LyricsPyRobot"
[tool.ruff]
line-length = 88
target-version = "py310"
preview = true
[tool.ruff.lint]
select = [
"FURB", # refurb
"I", # isort
"E", # pycodestyle: error
"W", # pycodestyle: warning
"UP", # pyupgrade
"F", # pyflakes
"SIM", # flake8-simplify
"RET", # flake8-return
"C4", # flake8-comprehensions
"PTH", # flake8-use-pathlib
"PERF", # perflint
"N", # pep8-naming
"RUF", # ruff
"G", # flake8-logging-format
"TID", # flake8-tidy-imports
"TCH", # flake8-type-checking
"FA", # flake8-future-annotations
"PL", # pylint
]
ignore = [
"RUF001",
"RUF002",
"RUF003",
"E203",
"PERF203",
"PLR09",
"PLR2004",
"PLR1702",
"PLW1514",
"PLW2901",
"PLW0603",
]
[tool.ruff.lint.isort]
known-first-party = ["lyricspybot"]