forked from lanky/spw-api-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (42 loc) · 1.56 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# setup script for packaging the rhnapi module
import sys
# print "currently nonfunctional."
# sys.exit(0)
from distutils.core import setup
setup(name = 'satellite-api-utils',
version = '5.4',
description = 'RHN Satellite XMLRPC API scripts and utilities',
author = 'Stuart Sears',
author_email = '[email protected]',
scripts = [
"scripts/audit-packages.py",
"scripts/channel-errata.py",
"scripts/channel-org-access.py",
"scripts/clone-activationkey.py",
"scripts/clone-channel.py",
"scripts/clone-configchannel.py",
"scripts/clone-errata.py",
"scripts/compare-channel-pkglist.py",
"scripts/compare-system-to-channel.py",
"scripts/create-channel.py",
"scripts/delete-activationkey.py",
"scripts/delete-channel.py",
"scripts/delete-configchannel.py",
"scripts/delete-kickstart.py",
"scripts/export-activationkeys.py",
"scripts/export-configchannels.py",
"scripts/export-kickstarts.py",
"scripts/import-activationkeys.py",
"scripts/import-configchannels.py",
"scripts/import-kickstarts.py",
"scripts/list-activationkeys.py",
"scripts/list-channels.py",
"scripts/list-configfiles.py",
"scripts/list-duplicate-systems.py",
"scripts/list-errata-for-package.py",
"scripts/list-unknown-arch-systems.py",
"scripts/upload-config-file.py",
],
)