-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 751 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 751 Bytes
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
from setuptools import setup, find_packages
VERSION = '2.2.3'
SHORT_DESCRIPTION = 'A tool for distributed container monitoring over Kubernetes'
REQUIRES = [
'requests', 'psutil',
'docker', 'flask',
'flask_restful',
'gunicorn',
]
def _load_readme() -> str:
with open('README.md', 'r') as fp:
return fp.read()
setup(
name='kubemon',
version=VERSION,
descripton=SHORT_DESCRIPTION,
long_description=_load_readme(),
long_description_content_type='text/markdown',
url='https://github.com/hrchlhck/kubemon',
author='Pedro Horchulhack',
author_email='pedro.horchulhack@ppgia.pucpr.br',
license='MIT',
packages=find_packages(),
install_requires=REQUIRES
)