-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
38 lines (35 loc) · 882 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
33
34
35
36
37
38
# Copyright Least Authority Enterprises.
# See LICENSE for details.
from setuptools import find_packages, setup
_metadata = {}
with open("src/kubetop/_metadata.py") as f:
exec(f.read(), _metadata)
setup(
name="kubetop",
version=_metadata["version_string"],
description="A top(1)-like tool for Kubernetes.",
author="kubetop Developers",
url="https://github.com/leastauthority/kubetop",
license="MIT",
zip_safe=False,
package_dir={"": "src"},
packages=find_packages(where="src"),
install_requires=[
"bitmath",
"attrs>=17.4.0",
"pyyaml",
"twisted[tls]>=17.9.0",
"treq",
"txkube>=0.3.0",
],
extras_require={
"dev": [
"hypothesis",
],
},
entry_points={
"console_scripts": [
"kubetop = kubetop._script:main",
],
},
)