-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·23 lines (20 loc) · 771 Bytes
/
setup.py
File metadata and controls
executable file
·23 lines (20 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
import glob
from distutils.core import setup
data_files=[
('../etc/dbus-1/system.d/',['conf/cn.kylinos.KylinDevAPI.conf']),
('share/dbus-1/system-services/',['conf/cn.kylinos.KylinDevAPI.service']),
('share/kylin-dev-api/', ['kylinDevAPI.py']),
('share/kylin-dev-api/', ['caller_demo.py']),
('share/kylin-dev-api/', ['dbus_daemon.py']),
('share/kylin-dev-api/', ['dbus_worker.py']),
('share/kylin-dev-api/utils/', glob.glob('utils/*')),
]
setup(name="kylin-dev-api",
version="1.0.0",
author="Kylin Development Team",
author_email="zdcp@kylinos.cn",
url="www.kylinos.cn",
license="GNU General Public License (GPL)",
data_files=data_files,
)