-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·24 lines (21 loc) · 786 Bytes
/
setup.py
File metadata and controls
executable file
·24 lines (21 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
DESCRIPTION = """\
hiveconf is a configuration framework
"""
from distutils.core import setup
setup (name = "hiveconf",
version = "0.5",
license = "LGPL",
description = "configuration framework",
long_description = DESCRIPTION,
author = "Peter Astrand",
author_email = "astrand@cendio.se",
url = "http://www.lysator.liu.se/~astrand/projects/hiveconf/",
package_dir = {'': 'python'},
py_modules = ["hiveconf"],
data_files=[('/usr/bin', ['python/hivetool']),
('/etc', ['etc/root.hconf']),
('/etc/hiveconf.d', ["etc/hiveconf.d/kde.hconf", "etc/hiveconf.d/samba.hconf"]),
('/usr/lib/hiveconf', ['setup.sh'])
]
)