2021-12-23 08:51:17 +03:00
|
|
|
[project]
|
2021-12-31 09:06:42 +03:00
|
|
|
name = "malojaserver"
|
2021-12-31 08:10:47 +03:00
|
|
|
version = "2.14.5"
|
2021-12-23 08:51:17 +03:00
|
|
|
description = "Self-hosted music scrobble database"
|
|
|
|
readme = "./README.md"
|
2021-12-26 22:22:17 +03:00
|
|
|
requires-python = ">=3.6"
|
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",
|
|
|
|
"waitress>=1.3",
|
2021-12-31 06:30:45 +03:00
|
|
|
"doreah>=1.7.2, <2",
|
2021-12-23 08:51:17 +03:00
|
|
|
"nimrodel>=0.7.0",
|
|
|
|
"setproctitle>=1.1.10",
|
2021-12-31 23:27:22 +03:00
|
|
|
#"pyvips>=2.1.16",
|
2021-12-23 08:51:17 +03:00
|
|
|
"jinja2>=2.11",
|
|
|
|
"lru-dict>=1.1.6",
|
2021-12-23 09:25:12 +03:00
|
|
|
"css_html_js_minify>=2.5.5",
|
|
|
|
"psutil>=5.8.0"
|
2021-12-23 08:51:17 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
[project.scripts]
|
2021-12-23 09:24:24 +03:00
|
|
|
maloja = "maloja.proccontrol.control:main"
|
2021-12-23 08:51:17 +03:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["flit_core >=3.2,<4"]
|
|
|
|
build-backend = "flit_core.buildapi"
|
2021-12-31 09:06:42 +03:00
|
|
|
|
|
|
|
[tool.flit.module]
|
|
|
|
name = "maloja"
|