Added pkginfo

This commit is contained in:
Krateng 2020-03-06 17:06:08 +01:00
parent fb51f61597
commit 5a08fd78c6
3 changed files with 35 additions and 35 deletions

View File

@ -54,7 +54,7 @@ Also neat: You can use your **custom artist or track images**.
```
@reboot maloja start
0 0 * * * maloja restart
42 0 * * * maloja restart
```

View File

@ -1,35 +1 @@
### PACKAGE DATA
name = "maloja"
desc = "Self-hosted music scrobble database"
author = {
"name":"Johannes Krattenmacher",
"email":"maloja@krateng.dev",
"github": "krateng"
}
version = 2,3,1
versionstr = ".".join(str(n) for n in version)
requires = [
"bottle>=0.12.16",
"waitress>=1.3",
"doreah>=1.5.3",
"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"
}
from . import globalconf

34
maloja/__pkginfo__.py Normal file
View File

@ -0,0 +1,34 @@
name = "maloja"
desc = "Self-hosted music scrobble database"
author = {
"name":"Johannes Krattenmacher",
"email":"maloja@krateng.dev",
"github": "krateng"
}
version = 2,3,2
versionstr = ".".join(str(n) for n in version)
links = {
"pypi":"malojaserver",
"github":"maloja"
}
requires = [
"bottle>=0.12.16",
"waitress>=1.3",
"doreah>=1.5.3",
"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"
}