maloja/pyproject.toml

80 lines
1.4 KiB
TOML
Raw Normal View History

2021-12-23 08:51:17 +03:00
[project]
name = "malojaserver"
2022-05-05 17:38:08 +03:00
version = "3.1.2"
2021-12-23 08:51:17 +03:00
description = "Self-hosted music scrobble database"
readme = "./README.md"
2022-04-23 18:59:39 +03:00
requires-python = ">=3.7"
2021-12-23 08:51:17 +03:00
license = { file="./LICENSE" }
authors = [ { name="Johannes Krattenmacher", email="maloja@dev.krateng.ch" } ]
urls.repository = "https://github.com/krateng/maloja"
urls.documentation = "https://github.com/krateng/maloja"
2021-12-26 01:43:34 +03:00
urls.homepage = "https://github.com/krateng/maloja"
2021-12-23 08:51:17 +03:00
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",
2022-04-23 18:59:39 +03:00
"waitress>=2.1.0",
2022-05-05 17:38:08 +03:00
"doreah>=1.9.3, <2",
2022-03-10 09:11:39 +03:00
"nimrodel>=0.8.0",
2021-12-23 08:51:17 +03:00
"setproctitle>=1.1.10",
#"pyvips>=2.1.16",
2022-04-23 18:59:39 +03:00
"jinja2>=3.0.0",
2021-12-23 08:51:17 +03:00
"lru-dict>=1.1.6",
2022-02-13 09:45:22 +03:00
"psutil>=5.8.0",
"sqlalchemy>=1.4",
2022-03-10 09:11:39 +03:00
"python-datauri>=1.1.0",
"requests>=2.27.1"
2021-12-23 08:51:17 +03:00
]
2022-03-09 23:53:42 +03:00
[project.optional-dependencies]
full = [
"pyvips>=2.1"
]
2021-12-23 08:51:17 +03:00
[project.scripts]
2022-04-16 03:17:43 +03:00
maloja = "maloja.__main__:main"
2021-12-23 08:51:17 +03:00
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "maloja"
2022-03-09 23:53:42 +03:00
[tool.osreqs.alpine]
build =[
"gcc",
2022-03-10 09:11:39 +03:00
"g++",
2022-03-09 23:53:42 +03:00
"python3-dev",
"libxml2-dev",
"libxslt-dev",
"libffi-dev",
"libc-dev",
"py3-pip",
"linux-headers"
]
run = [
"python3",
2022-04-23 21:13:50 +03:00
"py3-lxml",
2022-03-10 00:02:42 +03:00
"tzdata"
]
opt = [
2022-03-09 23:53:42 +03:00
"vips"
]
2022-03-10 23:45:56 +03:00
[tool.osreqs.debian]
build = [
"python3-pip"
]
run = [
"python3"
]
opt = []