forked from caktus/invoke-kubesae
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1013 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
# Always prefer setuptools over distutils
from setuptools import find_packages, setup
setup(
name="invoke-kubesae",
version="0.1.0",
packages=find_packages(exclude=["tests"]),
url="https://github.com/caktus/invoke-kubesae",
author="Caktus Group",
author_email="[email protected]",
description="An invoke tasks library to manage a kubernetes project.",
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
license="BSD",
include_package_data=True,
install_requires=[
"boto3>=1.16",
"invoke>=1.4",
"colorama>=0.4",
"ansible>=2.9",
],
python_requires=">=3.5",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Build Tools",
],
)