Spaces:
Runtime error
Runtime error
File size: 1,101 Bytes
b115d50 |
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 49 50 51 52 53 54 55 56 57 58 |
from importlib.metadata import PackageNotFoundError, version # pragma: no cover
try:
# Change here if project is renamed and does not equal the package name
dist_name = __name__
__version__ = version(dist_name)
except PackageNotFoundError: # pragma: no cover
__version__ = "unknown"
finally:
del version, PackageNotFoundError
from .base import (
Configuration,
MimeTypes,
RuntimeEnvironments,
SteamshipError,
Task,
TaskState,
check_environment,
)
from .data import (
Block,
DocTag,
EmbeddingIndex,
File,
Package,
PackageInstance,
PackageVersion,
PluginInstance,
PluginVersion,
Tag,
Workspace,
)
from .client import Steamship # isort:skip
__all__ = [
"Steamship",
"Configuration",
"SteamshipError",
"MimeTypes",
"Package",
"PackageInstance",
"PackageVersion",
"File",
"Task",
"TaskState",
"Block",
"Tag",
"Workspace",
"PluginInstance",
"PluginVersion",
"DocTag",
"EmbeddingIndex",
"check_environment",
"RuntimeEnvironments",
]
|