-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 935 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
from setuptools import setup, find_packages
setup(
name="kube-secrets",
version="0.0.1",
description="Easier management of kubernetes secrets.",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
author="hmka",
author_email="[email protected]",
url="https://github.com/maroshmka/kube-secrets",
packages=find_packages(),
include_package_data=True,
install_requires=["Click", "kubernetes"],
python_requires=">=3.6",
entry_points={"console_scripts": ["kube-secrets=kube_secrets.cli:main"]},
classifiers=[
"Topic :: Utilities",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)