diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2016-10-08 14:19:11 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2016-10-08 14:25:43 +0200 |
commit | d4fe77ac572ef0e60c9ffa5f987c9cda448cf9f2 (patch) | |
tree | 509f59c92a2a555a1e743f0ea689c5766c36319a /setup.py | |
parent | e182ba0c42a9d2b2afecb8da32d00f634999935e (diff) |
Reorganize Git interface scripts
Move the Git interface scripts from git-interface/ to aurweb/git/. Use
setuptools to automatically create wrappers which can be installed using
`python3 setup.py install`. Update the configuration files, the test
suite as well as the INSTALL and README files to reflect these changes.
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -17,4 +17,11 @@ setup( name="aurweb", version=version, packages=find_packages(), + entry_points={ + 'console_scripts': [ + 'aurweb-git-auth = aurweb.git.auth:main', + 'aurweb-git-serve = aurweb.git.serve:main', + 'aurweb-git-update = aurweb.git.update:main', + ], + }, ) |