Changing func to certmaster in top level directories, also covered
[certmaster.git] / setup.py
1 #!/usr/bin/python
2
3 from distutils.core import setup
4 #from setuptools import setup,find_packages
5
6 NAME = "certmaster"
7 VERSION = open("version", "r+").read().split()[0]
8 SHORT_DESC = "%s remote configuration and management api" % NAME
9 LONG_DESC = """
10 A small pluggable xml-rpc daemon used by %s to implement various web services hooks
11 """ % NAME
12
13
14 if __name__ == "__main__":
15
16 manpath = "share/man/man1/"
17 etcpath = "/etc/%s" % NAME
18 etcmodpath = "/etc/%s/modules" % NAME
19 initpath = "/etc/init.d/"
20 logpath = "/var/log/%s/" % NAME
21 certdir = "/var/lib/%s/certmaster" % NAME
22 pkipath = "/etc/pki/%s" % NAME
23 rotpath = "/etc/logrotate.d"
24 aclpath = "%s/minion-acl.d" % etcpath
25 setup(
26 name="%s" % NAME,
27 version = VERSION,
28 author = "Lots",
29 author_email = "certmaster-list@redhat.com",
30 url = "https://hosted.fedoraproject.org/projects/certmaster/",
31 license = "GPL",
32 scripts = [
33 "scripts/certmaster", "scripts/certmaster-ca",
34 "scripts/certmaster-request",
35 ],
36 # package_data = { '' : ['*.*'] },
37 package_dir = {"%s" % NAME: "%s" % NAME
38 },
39 packages = ["%s" % NAME,
40 "%s/minion" % NAME,
41 "%s/overlord" % NAME,
42 ],
43 data_files = [(initpath, ["init-scripts/certmasterd"]),
44 (initpath, ["init-scripts/certmaster"]),
45 (etcpath, ["etc/minion.conf"]),
46 (etcpath, ["etc/certmaster.conf"]),
47 (etcmodpath, []),
48 (manpath, ["docs/certmaster.1.gz"]),
49 (manpath, ["docs/certmaster-inventory.1.gz"]),
50 (manpath, ["docs/certmasterd.1.gz"]),
51 (manpath, ["docs/certmaster.1.gz"]),
52 (manpath, ["docs/certmaster-ca.1.gz"]),
53 (rotpath, ['etc/certmaster_rotate']),
54 (logpath, []),
55 (certdir, []),
56 (etcpath, []),
57 (pkipath, []),
58 (aclpath, [])
59 ],
60 description = SHORT_DESC,
61 long_description = LONG_DESC
62 )
63