forked from mbianchidev/klab-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (50 loc) · 1.44 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
51
from distutils.core import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
version = '0.1.7'
setup(
name='klab-cli',
packages=['klab-cli'],
version=f'{version}',
license='MIT',
description='klab-cli Kubernetes made easy - handle clusters and product with simple commands!',
author='KubeLab team',
long_description=long_description,
long_description_content_type='text/markdown',
author_email='[email protected]',
url='https://github.com/mbianchidev/klab-cli',
download_url=f'https://github.com/KubeLab-cloud/mbianchidev/archive/klab-cli-{version}.tar.gz',
keywords=['kubernetes', 'cli', 'iac', 'k9s', 'kubectl'],
install_requires=[
'boto3',
'botocore',
'click',
'jmespath',
'MarkupSafe',
'python-dateuti',
'PyYA',
's3transfer',
'six',
'urllib3',
'build',
'wheel',
'setuptools',
'flake8',
'mccabe',
'pycodestyle',
'pyflakes',
'kubernetes',
'requests',
'pytest',
],
# classifiers=[
# # 3 - Alpha
# # 4 - Beta
# # 5 - Production/Stable
# 'Development Status :: 3 - Alpha',
# 'Intended Audience :: Developers',
# 'License :: OSI Approved :: MIT License',
# 'Programming Language :: Python :: 3.11',
# ],
)