forked from krateng/maloja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (70 loc) · 1.44 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
76
77
78
79
[project]
name = "malojaserver"
version = "3.1.5"
description = "Self-hosted music scrobble database"
readme = "./README.md"
requires-python = ">=3.7"
license = { file="./LICENSE" }
authors = [ { name="Johannes Krattenmacher", email="[email protected]" } ]
urls.repository = "https://github.com/krateng/maloja"
urls.documentation = "https://github.com/krateng/maloja"
urls.homepage = "https://github.com/krateng/maloja"
keywords = ["scrobbling", "music", "selfhosted", "database", "charts", "statistics"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
dependencies = [
"bottle>=0.12.16",
"waitress>=2.1.0",
"doreah>=1.9.3, <2",
"nimrodel>=0.8.0",
"setproctitle>=1.1.10",
#"pyvips>=2.1.16",
"jinja2>=3.0.0",
"lru-dict>=1.1.6",
"psutil>=5.8.0",
"sqlalchemy>=1.4",
"python-datauri>=1.1.0",
"requests>=2.27.1"
]
[project.optional-dependencies]
full = [
"pyvips>=2.1"
]
[project.scripts]
maloja = "maloja.__main__:main"
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "maloja"
[tool.osreqs.alpine]
build =[
"gcc",
"g++",
"python3-dev",
"libxml2-dev",
"libxslt-dev",
"libffi-dev",
"libc-dev",
"py3-pip",
"linux-headers"
]
run = [
"python3",
"py3-lxml",
"tzdata"
]
opt = [
"vips"
]
[tool.osreqs.debian]
build = [
"python3-pip"
]
run = [
"python3"
]
opt = []