-
Notifications
You must be signed in to change notification settings - Fork 63
/
setup.py
31 lines (28 loc) · 1.13 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
#!/usr/bin/env python
"""setup script for katello-client-bootstrap"""
from distutils.core import setup # pylint:disable=import-error,no-name-in-module
from bootstrap import VERSION
setup(
name='katello-client-bootstrap',
version=VERSION,
description='Bootstrap Script for migrating systems to Foreman & Katello',
author='Rich Jerrido',
author_email='[email protected]',
license='GPL-2',
url='https://github.com/Katello/katello-client-bootstrap',
scripts=['bootstrap.py'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: System Administrators',
'Topic :: System :: Systems Administration',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)