diff options
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -4,30 +4,30 @@ import sys import re verpat = re.compile("VERSION *= *\"(.*)\"") -data = open("repsys").read() +data = open("mgarepo").read() m = verpat.search(data) if not m: sys.exit("error: can't find VERSION") VERSION = m.group(1) -setup(name="repsys", +setup(name="mgarepo", version = VERSION, - description = "Tools for Mandriva Linux repository access and management", + description = "Tools for Mageia repository access and management", author = "Gustavo Niemeyer", author_email = "gustavo@niemeyer.net", url = "http://qa.mandriva.com/twiki/bin/view/Main/RepositorySystem", license = "GPL", - long_description = """Tools for Mandriva Linux repository access and management.""", - packages = ["RepSys", "RepSys.cgi", "RepSys.commands", - "RepSys.plugins"], - scripts = ["repsys", "repsys-ssh"], + long_description = """Tools for Mageia repository access and management, based on repsys.""", + packages = ["MgaRepo", "MgaRepo.cgi", "MgaRepo.commands", + "MgaRepo.plugins"], + scripts = ["mgarepo", "mgarepo-ssh"], data_files = [ - ("/usr/share/repsys/", + ("/usr/share/mgarepo/", ["default.chlog", "revno.chlog", "create-srpm"]), - ("/etc/", ["repsys.conf"]), - ("share/man/man8/", ["repsys.8"])] + ("/etc/", ["mgarepo.conf"]), + ("share/man/man8/", ["mgarepo.8"])] ) # vim:ts=4:sw=4:et |