outerbounds 0.3.55rc3__py3-none-any.whl → 0.3.133__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- outerbounds/_vendor/PyYAML.LICENSE +20 -0
- outerbounds/_vendor/__init__.py +0 -0
- outerbounds/_vendor/_yaml/__init__.py +34 -0
- outerbounds/_vendor/click/__init__.py +73 -0
- outerbounds/_vendor/click/_compat.py +626 -0
- outerbounds/_vendor/click/_termui_impl.py +717 -0
- outerbounds/_vendor/click/_textwrap.py +49 -0
- outerbounds/_vendor/click/_winconsole.py +279 -0
- outerbounds/_vendor/click/core.py +2998 -0
- outerbounds/_vendor/click/decorators.py +497 -0
- outerbounds/_vendor/click/exceptions.py +287 -0
- outerbounds/_vendor/click/formatting.py +301 -0
- outerbounds/_vendor/click/globals.py +68 -0
- outerbounds/_vendor/click/parser.py +529 -0
- outerbounds/_vendor/click/py.typed +0 -0
- outerbounds/_vendor/click/shell_completion.py +580 -0
- outerbounds/_vendor/click/termui.py +787 -0
- outerbounds/_vendor/click/testing.py +479 -0
- outerbounds/_vendor/click/types.py +1073 -0
- outerbounds/_vendor/click/utils.py +580 -0
- outerbounds/_vendor/click.LICENSE +28 -0
- outerbounds/_vendor/vendor_any.txt +2 -0
- outerbounds/_vendor/yaml/__init__.py +471 -0
- outerbounds/_vendor/yaml/_yaml.cpython-311-darwin.so +0 -0
- outerbounds/_vendor/yaml/composer.py +146 -0
- outerbounds/_vendor/yaml/constructor.py +862 -0
- outerbounds/_vendor/yaml/cyaml.py +177 -0
- outerbounds/_vendor/yaml/dumper.py +138 -0
- outerbounds/_vendor/yaml/emitter.py +1239 -0
- outerbounds/_vendor/yaml/error.py +94 -0
- outerbounds/_vendor/yaml/events.py +104 -0
- outerbounds/_vendor/yaml/loader.py +62 -0
- outerbounds/_vendor/yaml/nodes.py +51 -0
- outerbounds/_vendor/yaml/parser.py +629 -0
- outerbounds/_vendor/yaml/reader.py +208 -0
- outerbounds/_vendor/yaml/representer.py +378 -0
- outerbounds/_vendor/yaml/resolver.py +245 -0
- outerbounds/_vendor/yaml/scanner.py +1555 -0
- outerbounds/_vendor/yaml/serializer.py +127 -0
- outerbounds/_vendor/yaml/tokens.py +129 -0
- outerbounds/command_groups/apps_cli.py +450 -0
- outerbounds/command_groups/cli.py +9 -5
- outerbounds/command_groups/local_setup_cli.py +249 -33
- outerbounds/command_groups/perimeters_cli.py +231 -33
- outerbounds/command_groups/tutorials_cli.py +111 -0
- outerbounds/command_groups/workstations_cli.py +88 -15
- outerbounds/utils/kubeconfig.py +2 -2
- outerbounds/utils/metaflowconfig.py +111 -21
- outerbounds/utils/schema.py +8 -2
- outerbounds/utils/utils.py +19 -0
- outerbounds/vendor.py +159 -0
- {outerbounds-0.3.55rc3.dist-info → outerbounds-0.3.133.dist-info}/METADATA +17 -6
- outerbounds-0.3.133.dist-info/RECORD +59 -0
- {outerbounds-0.3.55rc3.dist-info → outerbounds-0.3.133.dist-info}/WHEEL +1 -1
- outerbounds-0.3.55rc3.dist-info/RECORD +0 -15
- {outerbounds-0.3.55rc3.dist-info → outerbounds-0.3.133.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2017-2021 Ingy döt Net
|
2
|
+
Copyright (c) 2006-2016 Kirill Simonov
|
3
|
+
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
5
|
+
this software and associated documentation files (the "Software"), to deal in
|
6
|
+
the Software without restriction, including without limitation the rights to
|
7
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
8
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
9
|
+
so, subject to the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be included in all
|
12
|
+
copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
15
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
16
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
17
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
18
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
19
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
20
|
+
SOFTWARE.
|
File without changes
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# This is a stub package designed to roughly emulate the _yaml
|
2
|
+
# extension module, which previously existed as a standalone module
|
3
|
+
# and has been moved into the `yaml` package namespace.
|
4
|
+
# It does not perfectly mimic its old counterpart, but should get
|
5
|
+
# close enough for anyone who's relying on it even when they shouldn't.
|
6
|
+
from outerbounds._vendor import yaml
|
7
|
+
|
8
|
+
# in some circumstances, the yaml module we imoprted may be from a different version, so we need
|
9
|
+
# to tread carefully when poking at it here (it may not have the attributes we expect)
|
10
|
+
if not getattr(yaml, "__with_libyaml__", False):
|
11
|
+
from sys import version_info
|
12
|
+
|
13
|
+
exc = ModuleNotFoundError if version_info >= (3, 6) else ImportError
|
14
|
+
raise exc("No module named '_yaml'")
|
15
|
+
else:
|
16
|
+
from outerbounds._vendor.yaml._yaml import *
|
17
|
+
import warnings
|
18
|
+
|
19
|
+
warnings.warn(
|
20
|
+
"The _yaml extension module is now located at yaml._yaml"
|
21
|
+
" and its location is subject to change. To use the"
|
22
|
+
" LibYAML-based parser and emitter, import from `yaml`:"
|
23
|
+
" `from yaml import CLoader as Loader, CDumper as Dumper`.",
|
24
|
+
DeprecationWarning,
|
25
|
+
)
|
26
|
+
del warnings
|
27
|
+
# Don't `del yaml` here because yaml is actually an existing
|
28
|
+
# namespace member of _yaml.
|
29
|
+
|
30
|
+
__name__ = "_yaml"
|
31
|
+
# If the module is top-level (i.e. not a part of any specific package)
|
32
|
+
# then the attribute should be set to ''.
|
33
|
+
# https://docs.python.org/3.8/library/types.html
|
34
|
+
__package__ = ""
|
@@ -0,0 +1,73 @@
|
|
1
|
+
"""
|
2
|
+
Click is a simple Python module inspired by the stdlib optparse to make
|
3
|
+
writing command line scripts fun. Unlike other modules, it's based
|
4
|
+
around a simple API that does not come with too much magic and is
|
5
|
+
composable.
|
6
|
+
"""
|
7
|
+
from .core import Argument as Argument
|
8
|
+
from .core import BaseCommand as BaseCommand
|
9
|
+
from .core import Command as Command
|
10
|
+
from .core import CommandCollection as CommandCollection
|
11
|
+
from .core import Context as Context
|
12
|
+
from .core import Group as Group
|
13
|
+
from .core import MultiCommand as MultiCommand
|
14
|
+
from .core import Option as Option
|
15
|
+
from .core import Parameter as Parameter
|
16
|
+
from .decorators import argument as argument
|
17
|
+
from .decorators import command as command
|
18
|
+
from .decorators import confirmation_option as confirmation_option
|
19
|
+
from .decorators import group as group
|
20
|
+
from .decorators import help_option as help_option
|
21
|
+
from .decorators import make_pass_decorator as make_pass_decorator
|
22
|
+
from .decorators import option as option
|
23
|
+
from .decorators import pass_context as pass_context
|
24
|
+
from .decorators import pass_obj as pass_obj
|
25
|
+
from .decorators import password_option as password_option
|
26
|
+
from .decorators import version_option as version_option
|
27
|
+
from .exceptions import Abort as Abort
|
28
|
+
from .exceptions import BadArgumentUsage as BadArgumentUsage
|
29
|
+
from .exceptions import BadOptionUsage as BadOptionUsage
|
30
|
+
from .exceptions import BadParameter as BadParameter
|
31
|
+
from .exceptions import ClickException as ClickException
|
32
|
+
from .exceptions import FileError as FileError
|
33
|
+
from .exceptions import MissingParameter as MissingParameter
|
34
|
+
from .exceptions import NoSuchOption as NoSuchOption
|
35
|
+
from .exceptions import UsageError as UsageError
|
36
|
+
from .formatting import HelpFormatter as HelpFormatter
|
37
|
+
from .formatting import wrap_text as wrap_text
|
38
|
+
from .globals import get_current_context as get_current_context
|
39
|
+
from .parser import OptionParser as OptionParser
|
40
|
+
from .termui import clear as clear
|
41
|
+
from .termui import confirm as confirm
|
42
|
+
from .termui import echo_via_pager as echo_via_pager
|
43
|
+
from .termui import edit as edit
|
44
|
+
from .termui import getchar as getchar
|
45
|
+
from .termui import launch as launch
|
46
|
+
from .termui import pause as pause
|
47
|
+
from .termui import progressbar as progressbar
|
48
|
+
from .termui import prompt as prompt
|
49
|
+
from .termui import secho as secho
|
50
|
+
from .termui import style as style
|
51
|
+
from .termui import unstyle as unstyle
|
52
|
+
from .types import BOOL as BOOL
|
53
|
+
from .types import Choice as Choice
|
54
|
+
from .types import DateTime as DateTime
|
55
|
+
from .types import File as File
|
56
|
+
from .types import FLOAT as FLOAT
|
57
|
+
from .types import FloatRange as FloatRange
|
58
|
+
from .types import INT as INT
|
59
|
+
from .types import IntRange as IntRange
|
60
|
+
from .types import ParamType as ParamType
|
61
|
+
from .types import Path as Path
|
62
|
+
from .types import STRING as STRING
|
63
|
+
from .types import Tuple as Tuple
|
64
|
+
from .types import UNPROCESSED as UNPROCESSED
|
65
|
+
from .types import UUID as UUID
|
66
|
+
from .utils import echo as echo
|
67
|
+
from .utils import format_filename as format_filename
|
68
|
+
from .utils import get_app_dir as get_app_dir
|
69
|
+
from .utils import get_binary_stream as get_binary_stream
|
70
|
+
from .utils import get_text_stream as get_text_stream
|
71
|
+
from .utils import open_file as open_file
|
72
|
+
|
73
|
+
__version__ = "8.1.3"
|