This repository has been archived by the owner on Nov 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
68 lines (62 loc) · 1.6 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "raphson_mp"
version = "1.4.0"
authors = [
{ name = "Robin Slot", email = "[email protected]" },
]
description = "Raphson music player"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Flask",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Natural Language :: Dutch",
"Operating System :: POSIX",
"Topic :: Multimedia :: Sound/Audio :: Players",
"Typing :: Typed"
]
dependencies = [
"gunicorn>=21.0", # previous versions have logging issues
"flask>=3.0",
"flask-babel>=4.0", # required for compat with flask 3
"requests>=2.25.0", # arbitrary somewhat recent version
]
[project.optional-dependencies]
online = [
"bcrypt>=3.0",
"yt-dlp",
]
offline = [
"raphson_music_client"
]
prometheus = ["prometheus-client>=0.15.0"]
dev = [
"pylint",
"mypy",
"types-beautifulsoup4",
"types-requests",
"build",
"twine",
]
[project.urls]
Homepage = "https://github.com/Derkades/raphson-music-player"
Issues = "https://github.com/Derkades/raphson-music-player/issues"
[project.scripts]
raphson-mp = "raphson_mp.__main__:main"
[tool.hatch.build]
artifacts = ["*.mo"]
[tool.basedpyright]
include = ["raphson_mp"]
reportUnusedCallResult = false
reportAny = false
reportOptionalSubscript = false
reportRedeclaration = false
reportImportCycles = false
reportUnusedImport = false # already handled by ruff