-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (30 loc) · 811 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
31
32
#!/usr/bin/env python
from distutils.core import setup
setup(name='ai-tools',
version='10.2.0',
description='Tools for Agile Infrastructure project',
author='AI Config Team',
author_email='[email protected]',
url='http://www.cern.ch/ai',
package_dir= {'': 'src'},
packages=['aitools'],
scripts=[
'bin/ai-add-param',
'bin/ai-bs-vm',
'bin/ai-disownhost',
'bin/ai-foreman',
'bin/ai-hiera',
'bin/ai-installhost',
'bin/ai-ipmi',
'bin/ai-kill-vm',
'bin/ai-modulesync',
'bin/ai-pwn',
'bin/ai-rc',
'bin/ai-rebuild-vm',
'bin/ai-remote-power-control',
'bin/ai-rename-host',
'bin/ai-set-fe',
'bin/ai-whatfe',
'bin/tbag'
],
)