-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.05 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tulyp"
version = "0.1.1"
authors = [
{ name="pulzar", email="[email protected]" },
]
description = "Display lyrics of the currently playing song in a terminal."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"beautifulsoup4",
"dbus-python",
"lyricsgenius",
"psutil",
"requests",
]
[project.scripts]
tulyp = "tulyp:main"
[project.urls]
"Homepage" = "https://github.com/laszloszurok/tulyp"
"Bug Tracker" = "https://github.com/laszloszurok/tulyp/issues"
[tool.hatch.envs.lint]
detached = true
dependencies = [
"black>=23.1.0",
"ruff>=0.0.243",
]
[tool.hatch.envs.lint.scripts]
style = [
"ruff {args:.}",
"black --check --diff {args:.}",
]
fmt = [
"black {args:.}",
"ruff --fix {args:.}",
"style",
]
[tool.black]
target-version = ["py310"]
line-length = 120
skip-string-normalization = true