Make maintenance scripts installable

Add wrappers for the maintenance scripts to the setuptools
configuration.

Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
Lukas Fleischer 2016-10-17 15:20:29 +02:00
parent 85866796a4
commit 37188603b5
9 changed files with 9 additions and 0 deletions

View file

@ -22,6 +22,12 @@ setup(
'aurweb-git-auth = aurweb.git.auth:main',
'aurweb-git-serve = aurweb.git.serve:main',
'aurweb-git-update = aurweb.git.update:main',
'aurweb-aurblup = aurweb.scripts.aurblup:main',
'aurweb-mkpkglists = aurweb.scripts.mkpkglists:main',
'aurweb-notify = aurweb.scripts.notify:main',
'aurweb-pkgmaint = aurweb.scripts.pkgmaint:main',
'aurweb-popupdate = aurweb.scripts.popupdate:main',
'aurweb-tuvotereminder = aurweb.scripts.tuvotereminder:main',
],
},
)

View file

@ -1,3 +1,6 @@
1. The default configuration file search path now points to /etc/aurweb/config.
Make sure you copy your aurweb configuration to the new location before
upgrading.
2. The maintenance scripts have been prefixed by "aurweb-" and can now be
installed using `python3 setup.py install`.