diff options
| author | Adrian Likins <alikins@redhat.com> | 2007-09-25 11:50:28 -0400 |
|---|---|---|
| committer | Adrian Likins <alikins@redhat.com> | 2007-09-25 11:50:28 -0400 |
| commit | fb7df2a5b7834ead29effb5c60bdc33558546631 (patch) | |
| tree | 6c70ccfb037ab621cc69085ba8d5b540753d81dd /setup.py | |
| parent | 9c72cbd826528bb64267ba2184ae16099343c7ab (diff) | |
| parent | 47100aa2f165b47175af1e1aef736c5769a83169 (diff) | |
Merge branch 'master' of ssh://git.fedoraproject.org/git/hosted/func
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 23 |
1 files changed, 11 insertions, 12 deletions
@@ -10,7 +10,7 @@ NAME = "func" VERSION = open("version", "r+").read().split()[0] SHORT_DESC = "%s remote configuration and management api" % NAME LONG_DESC = """ -A small pluggabe xml-rpc daemon used by %s to implement various web services hooks +A small pluggable xml-rpc daemon used by %s to implement various web services hooks """ % NAME @@ -36,23 +36,22 @@ if __name__ == "__main__": name="%s" % NAME, version = VERSION, author = "Lots", - author_email = "et-mgmt-tools@redhat.com", + author_email = "func-list@redhat.com", url = "https://hosted.fedoraproject.org/projects/func/", license = "GPL", - scripts = ["scripts/funcd", - ], + scripts = ["scripts/funcd", "scripts/certmaster"], # package_data = { '' : ['*.*'] }, - package_dir = {"%s" % NAME: "", - "%s/server" % NAME: "server", - "%s/server/modules" % NAME: "modules/", - "%s/client" % NAME: "client" + package_dir = {"%s" % NAME: "%s" % NAME, + "%s/minion" % NAME: "minion/", + "%s/minion/modules" % NAME: "modules/", + "%s/overlord" % NAME: "overlord/" }, packages = ["%s" % NAME, - "%s/server" % NAME, - "%s/client" % NAME, - "%s/server/modules" % NAME + "%s/minion" % NAME, + "%s/overlord" % NAME, + "%s/minion/modules" % NAME ], - data_files = [(initpath, ["init-scripts/funcd"]), + data_files = [(initpath, ["init-scripts/funcd", "init-scripts/certmaster"]), (etcpath, ["settings",]), (etcpathdb, []), (logpath, []), |
