1
0
mirror of https://github.com/krateng/maloja.git synced 2023-08-10 21:12:55 +03:00
maloja/maloja/__pkginfo__.py
2020-03-19 18:41:45 +01:00

35 lines
564 B
Python

name = "maloja"
desc = "Self-hosted music scrobble database"
author = {
"name":"Johannes Krattenmacher",
"email":"maloja@krateng.dev",
"github": "krateng"
}
version = 2,3,5
versionstr = ".".join(str(n) for n in version)
links = {
"pypi":"malojaserver",
"github":"maloja"
}
requires = [
"bottle>=0.12.16",
"waitress>=1.3",
"doreah>=1.5.6",
"nimrodel>=0.6.3",
"setproctitle>=1.1.10",
"wand>=0.5.4",
"lesscpy>=0.13"
]
resources = [
"web/*/*",
"web/*",
"static/*/*",
"data_files/*/*",
"data_files/*/*/*"
]
commands = {
"maloja":"controller:main"
}