-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 938 Bytes
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 938 Bytes
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
[project]
name = "xradios"
version = "0.2.0"
description = "Search, bookmark, and stream internet radio stations"
readme = "README.md"
authors = [
{ name = "André P. Santos", email = "andreztz@gmail.com" }
]
requires-python = ">=3.11"
dependencies = [
"appdirs>=1.4.4",
"click>=8.1.8",
"cmd-parser>=0.0.1",
"jsonrpclib-pelix>=0.4.3.4",
"pluginbase>=1.0.1",
"pyradios>=2.1.1",
"python-mpv>=1.0.7",
"streamscrobbler3>=0.0.4",
"textual>=3.1.0",
"tinydb>=4.8.2",
]
[dependency-groups]
dev = [
"ruff>=0.11.6",
"rust-just>=1.40.0",
"textual-dev>=1.7.0",
]
[project.scripts]
xradios = "xradios:main"
xradiosd = "xradiosd:main"
[tool.ruff]
line-length = 79
[tool.ruff.lint]
select = ['I', 'F', 'E', 'W', 'PL', 'PT']
extend-select = ["E501"]
[tool.hatch.build.targets.wheel]
packages = ["xradios", "xradiosd"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"