-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (29 loc) · 872 Bytes
/
setup.py
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
#!/usr/bin/python
from distutils.core import setup
setup(name="jurt",
version = "0.01",
description = "Jurt builds packages like iurt",
url = "http://wiki.mandriva.com/",
author = "Bogdano Arendartchuk",
author_email = "bogdano@mandriva.com",
license = "GPL",
long_description = \
"""It builds packages like iurt""",
packages = [
"jurtlib/"],
scripts = ["jurt",
"jurt-build",
"jurt-shell",
"jurt-put",
"jurt-showrc",
"jurt-root-command",
"jurt-setup",
"jurt-test-sudo",
"jurt-list-targets",
],
data_files = [
('/etc/jurt/',
['jurt.conf'] ),
('/usr/share/doc/jurt/',
['README'])]
)