forked from markokr/cc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 758 Bytes
/
setup.py
File metadata and controls
34 lines (31 loc) · 758 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
25
26
27
28
29
30
31
32
33
34
#! /usr/bin/env python
from distutils.core import setup
ln = open('debian/changelog', 'r').readline()
ver = ln[ ln.index('(')+1 : ln.index(')') ]
setup(
name = "cc",
version = ver,
maintainer = "Marko Kreen",
maintainer_email = "marko.kreen@skype.net",
packages = [
'cc',
'cc.handler',
'cc.daemon',
'cc.daemon.plugins',
'cc.daemon.plugins.pg_logforward',
'cc.task',
'cc.test',
],
scripts = [
'bin/ccserver.py',
],
data_files = [
('share/doc/cc', [
'conf/cclocal.ini',
'conf/ccproxy.ini',
'conf/ccserver-info.ini',
'conf/ccserver-log.ini',
'conf/ccserver-tasks.ini',
]),
],
)