-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (40 loc) · 1.06 KB
/
setup.py
File metadata and controls
48 lines (40 loc) · 1.06 KB
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
# coding: utf-8
"""
CloudHarness deploy
OpenAPI spec version: 0.6.5
Contact: cloudharness@metacell.us
"""
from setuptools import setup, find_packages
NAME = "cloudharness-cli-tools"
VERSION = "3.0.0"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIREMENTS = [
'ruamel.yaml',
'oyaml',
'docker',
'six',
'cloudharness_model',
'cloudharness_utils',
'dirhash',
"StrEnum ; python_version < '3.11'",
]
setup(
name=NAME,
version=VERSION,
description="CloudHarness deploy and code generation tools",
author_email="cloudharness@metacell.us",
url="",
keywords=["Cloud", "Kubernetes", "Helm", "Deploy"],
install_requires=REQUIREMENTS,
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=True,
scripts=['harness-deployment', 'harness-generate', 'harness-application', 'harness-migrate'],
long_description="""\
CloudHarness deploy library
"""
)