forked from kxr/o-must-gather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·50 lines (46 loc) · 1.3 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
44
45
46
47
48
49
50
#!/usr/env/bin python
# -*- coding: utf-8 -*-
"""
oc like tool that works with must-gather rather than OpenShift API
"""
from setuptools import find_packages, setup
import omg
dependencies = [
"tabulate",
"pyyaml",
"python-dateutil",
"cryptography>=2.5,<=3.3.2",
"click==7.1.2",
]
setup(
name="o-must-gather",
version=omg.version,
url="https://github.com/kxr/o-must-gather",
license="GPLv3",
author="Khizer Naeem",
author_email="khizernaeem@gmail.com",
description="oc like tool that works with must-gather rather than OpenShift API",
long_description=__doc__,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
platforms="any",
install_requires=dependencies,
entry_points={
"console_scripts": [
"omg = omg.cli:cli",
],
},
classifiers=[
# As from http://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
],
)