-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (68 loc) · 2.19 KB
/
pyproject.toml
File metadata and controls
78 lines (68 loc) · 2.19 KB
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
77
78
[project]
name = "dakaraplayer"
authors = [
{name = "Neraste", email = "neraste.herr10@gmail.com"},
]
description = "Media player for the Dakara Project"
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version"]
requires-python = ">= 3.10"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Environment :: X11 Applications",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: End Users/Desktop",
]
dependencies = [
"dakarabase>=2.2.0,<2.3.0",
"filetype>=1.2.0,<1.3.0",
"Jinja2>=3.1.6,<3.2.0",
"packaging>=26.0,<27.0",
"python-mpv-jsonipc>=1.2.1,<1.3.0",
"python-vlc>=3.0.21203,<3.1.0,!=3.0.12117",
]
[project.optional-dependencies]
dev = [
"black>=26.3.1,<27.0.0",
"codecov>=2.1.13,<2.2.0",
"func_timeout>=4.3.5,<4.4.0",
"isort>=8.0.1,<8.1.0",
"pdoc>=16.0.0,<16.1.0",
"pre-commit>=4.5.1,<4.6.0",
"pytest-cov>=7.1.0,<7.2.0",
"pytest>=9.0.2,<9.1.0",
"ruff>=0.15.9,<0.16.0",
]
# note: update the build-system section below
# note: update .pre-commit-config.yaml as well
[project.urls]
Homepage = "https://github.com/DakaraProject/dakara-player"
Repository = "https://github.com/DakaraProject/dakara-player.git"
Issues = "https://github.com/DakaraProject/dakara-player/issues"
Changelog = "https://github.com/DakaraProject/dakara-player/blob/master/CHANGELOG.md"
[project.scripts]
dakara-player = "dakara_player.__main__:main"
[build-system]
requires = ["setuptools>=82.0.1"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "dakara_player.version.__version__" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest]
addopts = ["--cov=dakara_player"]
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "W", "B"]
ignore = []