truefoundry 0.3.0rc1__py3-none-any.whl → 0.3.0rc3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of truefoundry might be problematic. Click here for more details.
- truefoundry/deploy/__init__.py +1 -0
- truefoundry/deploy/auto_gen/models.py +118 -2
- truefoundry/deploy/builder/__init__.py +22 -2
- truefoundry/deploy/v2/lib/deployable_patched_models.py +4 -0
- truefoundry/deploy/v2/lib/patched_models.py +18 -0
- truefoundry/flyte/__init__.py +6 -0
- {truefoundry-0.3.0rc1.dist-info → truefoundry-0.3.0rc3.dist-info}/METADATA +4 -2
- {truefoundry-0.3.0rc1.dist-info → truefoundry-0.3.0rc3.dist-info}/RECORD +10 -9
- {truefoundry-0.3.0rc1.dist-info → truefoundry-0.3.0rc3.dist-info}/WHEEL +0 -0
- {truefoundry-0.3.0rc1.dist-info → truefoundry-0.3.0rc3.dist-info}/entry_points.txt +0 -0
truefoundry/deploy/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: application.json
|
|
3
|
-
# timestamp: 2024-07-
|
|
3
|
+
# timestamp: 2024-07-05T13:46:01+00:00
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
@@ -795,7 +795,7 @@ class PythonBuild(BaseModel):
|
|
|
795
795
|
)
|
|
796
796
|
command: Union[str, List[str]] = Field(
|
|
797
797
|
...,
|
|
798
|
-
description="Command will be set as the Entrypoint of the
|
|
798
|
+
description="Command will be set as the Entrypoint of the generatede\nimage.\n+label=Command\n+usage=Command to run when the container starts.\nCommand will be set as the Entrypoint of the generated image.\nWhen deploying a Job, the command can be templatized by defining `params` and referencing them in command\nE.g. `python main.py --learning_rate {{learning_rate}}`",
|
|
799
799
|
)
|
|
800
800
|
cuda_version: Optional[
|
|
801
801
|
constr(
|
|
@@ -1050,6 +1050,59 @@ class StringDataMount(BaseModel):
|
|
|
1050
1050
|
data: str = Field(..., description="+label=Data\n+usage=The file content.")
|
|
1051
1051
|
|
|
1052
1052
|
|
|
1053
|
+
class TaskDockerFileBuild(BaseModel):
|
|
1054
|
+
"""
|
|
1055
|
+
+docs=Describes the configuration for the docker build for a task
|
|
1056
|
+
+label=Docker File
|
|
1057
|
+
+icon=fa-brands fa-docker:#0db7ed
|
|
1058
|
+
"""
|
|
1059
|
+
|
|
1060
|
+
type: Literal["task-dockerfile-build"] = Field(..., description="+value=dockerfile")
|
|
1061
|
+
dockerfile_path: str = Field(
|
|
1062
|
+
"./Dockerfile",
|
|
1063
|
+
description="+label=Path to Dockerfile\n+usage=The file path of the Dockerfile relative to project root path.",
|
|
1064
|
+
)
|
|
1065
|
+
build_args: Optional[Dict[str, str]] = Field(
|
|
1066
|
+
None, description="+label=Build arguments to pass to docker build"
|
|
1067
|
+
)
|
|
1068
|
+
|
|
1069
|
+
|
|
1070
|
+
class TaskPythonBuild(BaseModel):
|
|
1071
|
+
"""
|
|
1072
|
+
+docs=Describes the configuration for the python build for a task
|
|
1073
|
+
+label=Python Buid Spec
|
|
1074
|
+
+icon=fa-brands fa-python:#306998
|
|
1075
|
+
"""
|
|
1076
|
+
|
|
1077
|
+
type: Literal["task-python-build"] = Field(
|
|
1078
|
+
..., description="+value=task-python-build"
|
|
1079
|
+
)
|
|
1080
|
+
python_version: constr(regex=r"^\d+(\.\d+){1,2}([\-\.a-z0-9]+)?$") = Field(
|
|
1081
|
+
"3.9",
|
|
1082
|
+
description="+label=Python version\n+usage=Python version to run your application. Should be one of the tags listed on [Official Python Docker Page](https://hub.docker.com/_/python)\n+message=Please enter a valid Python version tag",
|
|
1083
|
+
)
|
|
1084
|
+
requirements_path: Optional[str] = Field(
|
|
1085
|
+
None,
|
|
1086
|
+
description="`Path to build context`\n+label=Path to requirements\n+usage=Path to `requirements.txt` relative to\n`Path to build context`",
|
|
1087
|
+
)
|
|
1088
|
+
pip_packages: Optional[List[str]] = Field(
|
|
1089
|
+
None,
|
|
1090
|
+
description='+label=Pip packages to install\n+usage=Define pip package requirements.\nIn Python/YAML E.g. ["fastapi>=0.90,<1.0", "uvicorn"]\n+placeholder=Enter a pip package name E.g. fastapi>=0.90,<1.0',
|
|
1091
|
+
)
|
|
1092
|
+
apt_packages: Optional[List[str]] = Field(
|
|
1093
|
+
None,
|
|
1094
|
+
description='+label=List of Debian packages to install.\n+usage=Debian packages to install via `apt get`.\nIn Python/YAML E.g. ["git", "ffmpeg", "htop"]\n+placeholder=Enter a debian package name E.g. ffmpeg',
|
|
1095
|
+
)
|
|
1096
|
+
cuda_version: Optional[
|
|
1097
|
+
constr(
|
|
1098
|
+
regex=r"^((\d+\.\d+(\.\d+)?-cudnn\d+-(runtime|devel)-ubuntu\d+\.\d+)|11\.0-cudnn8|11\.1-cudnn8|11\.2-cudnn8|11\.3-cudnn8|11\.4-cudnn8|11\.5-cudnn8|11\.6-cudnn8|11\.7-cudnn8|11\.8-cudnn8|12\.0-cudnn8|12\.1-cudnn8|12\.2-cudnn8)$"
|
|
1099
|
+
)
|
|
1100
|
+
] = Field(
|
|
1101
|
+
None,
|
|
1102
|
+
description="+label=CUDA Version\n+usage=Version of CUDA Toolkit and CUDNN to install in the image\nThese combinations are based off of publically available docker images on docker hub\nYou can also specify a valid tag of the form {cuda_version_number}-cudnn{cudnn_version_number}-{runtime|devel}-ubuntu{ubuntu_version}\nRefer https://hub.docker.com/r/nvidia/cuda/tags for valid set of values\nNote: We use deadsnakes ubuntu ppa to add Python that currently supports only Ubuntu 18.04, 20.04 and 22.04",
|
|
1103
|
+
)
|
|
1104
|
+
|
|
1105
|
+
|
|
1053
1106
|
class TruefoundryArtifactSource(BaseModel):
|
|
1054
1107
|
"""
|
|
1055
1108
|
+docs=Input for Artifact from Truefoundry Artifact Registry
|
|
@@ -1185,6 +1238,34 @@ class VolumeMount(BaseModel):
|
|
|
1185
1238
|
)
|
|
1186
1239
|
|
|
1187
1240
|
|
|
1241
|
+
class Workflow(BaseModel):
|
|
1242
|
+
"""
|
|
1243
|
+
+docs=Describes the configuration for the worflow
|
|
1244
|
+
"""
|
|
1245
|
+
|
|
1246
|
+
type: constr(regex=r"^workflow$") = Field(..., description="+value=workflow")
|
|
1247
|
+
name: constr(regex=r"^[a-z][a-z0-9\-]{1,30}[a-z0-9]$") = Field(
|
|
1248
|
+
...,
|
|
1249
|
+
description="+usage=Name of the workflow\n+sort=1\n+message=3 to 32 lower case characters long alphanumeric word, may contain - in between, cannot start with a number",
|
|
1250
|
+
)
|
|
1251
|
+
source: Union[LocalSource, RemoteSource] = Field(
|
|
1252
|
+
...,
|
|
1253
|
+
description="+docs=Source Code for the workflow, either local or remote\n+label=Source Code for your workflow\n+icon=fa-solid fa-cloud-arrow-up:#21B6A8\n+sort=200",
|
|
1254
|
+
)
|
|
1255
|
+
env: Optional[Dict[str, str]] = Field(
|
|
1256
|
+
None,
|
|
1257
|
+
description="+label=Environment Variables\n+usage=Configure environment variables to be injected in the service either as plain text or secrets. [Docs](https://docs.truefoundry.com/docs/env-variables)\n+icon=fa-globe\n+sort=500",
|
|
1258
|
+
)
|
|
1259
|
+
docker_registry: Optional[str] = Field(
|
|
1260
|
+
None,
|
|
1261
|
+
description="+docs=FQN of the container registry. You can the FQN of your desired container registry (or add one)\nin the Integrations page[Integrations](https://app.truefoundry.tech/integrations?tab=docker-registry) page\n+label=Docker Registry\n+usage=FQN of the container registry. If you can't find your registry here,\nadd it through the [Integrations](/integrations?tab=docker-registry) page",
|
|
1262
|
+
)
|
|
1263
|
+
flyte_entities: List[Dict[str, Any]] = Field(
|
|
1264
|
+
...,
|
|
1265
|
+
description="+docs=These\n+label=Flyte Entities\nActually ContainerTaskConfig and PythonTaskConfig are not flyte entities, this is just for code generation",
|
|
1266
|
+
)
|
|
1267
|
+
|
|
1268
|
+
|
|
1188
1269
|
class ArtifactsDownload(BaseModel):
|
|
1189
1270
|
"""
|
|
1190
1271
|
+docs=Describes the configuration for the artifacts cache
|
|
@@ -1287,6 +1368,21 @@ class Codeserver(BaseWorkbenchInput):
|
|
|
1287
1368
|
auth: Optional[BasicAuthCreds] = None
|
|
1288
1369
|
|
|
1289
1370
|
|
|
1371
|
+
class ContainerTaskConfig(BaseModel):
|
|
1372
|
+
type: constr(regex=r"^container-task-config$") = Field(
|
|
1373
|
+
..., description="+value=container-task-config"
|
|
1374
|
+
)
|
|
1375
|
+
image: Union[Build, Image] = Field(
|
|
1376
|
+
...,
|
|
1377
|
+
description="+docs=Specify whether you want to deploy a Docker image or build and deploy from source code\n+label=Deploy a Docker image or build and deploy from source code\n+icon=fa-solid fa-cloud-arrow-up:#21B6A8\n+sort=200",
|
|
1378
|
+
)
|
|
1379
|
+
env: Optional[Dict[str, str]] = Field(
|
|
1380
|
+
None,
|
|
1381
|
+
description="+label=Environment Variables\n+usage=Configure environment variables to be injected in the task either as plain text or secrets. [Docs](https://docs.truefoundry.com/docs/env-variables)\n+icon=fa-globe\n+sort=200",
|
|
1382
|
+
)
|
|
1383
|
+
resources: Optional[Resources] = None
|
|
1384
|
+
|
|
1385
|
+
|
|
1290
1386
|
class CoreNATSOutputConfig(BaseModel):
|
|
1291
1387
|
"""
|
|
1292
1388
|
+docs=Describes the configuration for the output Core NATS worker
|
|
@@ -1523,6 +1619,25 @@ class Notebook(BaseWorkbenchInput):
|
|
|
1523
1619
|
)
|
|
1524
1620
|
|
|
1525
1621
|
|
|
1622
|
+
class PythonTaskConfig(BaseModel):
|
|
1623
|
+
"""
|
|
1624
|
+
+docs=Describes the configuration for the python function task
|
|
1625
|
+
"""
|
|
1626
|
+
|
|
1627
|
+
type: constr(regex=r"^python-task-config$") = Field(
|
|
1628
|
+
..., description="+value=python-task-config"
|
|
1629
|
+
)
|
|
1630
|
+
image: Union[TaskPythonBuild, TaskDockerFileBuild] = Field(
|
|
1631
|
+
...,
|
|
1632
|
+
description="+label=Image Spec\n+docs=Specification for the image to be used for the task\n+sort=100\n+usage=Specify the image spec for the task",
|
|
1633
|
+
)
|
|
1634
|
+
env: Optional[Dict[str, str]] = Field(
|
|
1635
|
+
None,
|
|
1636
|
+
description="+label=Environment Variables\n+usage=Configure environment variables to be injected in the task either as plain text or secrets. [Docs](https://docs.truefoundry.com/docs/env-variables)\n+icon=fa-globe\n+sort=200",
|
|
1637
|
+
)
|
|
1638
|
+
resources: Optional[Resources] = None
|
|
1639
|
+
|
|
1640
|
+
|
|
1526
1641
|
class SSHServer(BaseWorkbenchInput):
|
|
1527
1642
|
"""
|
|
1528
1643
|
+docs=Describes the configuration for the ssh server
|
|
@@ -1672,4 +1787,5 @@ class Application(BaseModel):
|
|
|
1672
1787
|
Helm,
|
|
1673
1788
|
Volume,
|
|
1674
1789
|
ApplicationSet,
|
|
1790
|
+
Workflow,
|
|
1675
1791
|
]
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
from typing import Dict, List, Optional, Union
|
|
2
2
|
|
|
3
|
-
from truefoundry.deploy.auto_gen.models import
|
|
3
|
+
from truefoundry.deploy.auto_gen.models import (
|
|
4
|
+
DockerFileBuild,
|
|
5
|
+
PythonBuild,
|
|
6
|
+
TaskDockerFileBuild,
|
|
7
|
+
TaskPythonBuild,
|
|
8
|
+
)
|
|
4
9
|
from truefoundry.deploy.builder.builders import get_builder
|
|
5
10
|
from truefoundry.deploy.builder.builders.tfy_notebook_buildpack.dockerfile_template import (
|
|
6
11
|
NotebookImageBuild,
|
|
@@ -11,7 +16,13 @@ from truefoundry.pydantic_v1 import BaseModel
|
|
|
11
16
|
class _BuildConfig(BaseModel):
|
|
12
17
|
# I cannot use Field(discriminator="build_config_type") here as
|
|
13
18
|
# build_config_type in the build configs is not a Literal.
|
|
14
|
-
__root__: Union[
|
|
19
|
+
__root__: Union[
|
|
20
|
+
DockerFileBuild,
|
|
21
|
+
PythonBuild,
|
|
22
|
+
NotebookImageBuild,
|
|
23
|
+
TaskPythonBuild,
|
|
24
|
+
TaskDockerFileBuild,
|
|
25
|
+
]
|
|
15
26
|
|
|
16
27
|
|
|
17
28
|
def build(
|
|
@@ -20,6 +31,15 @@ def build(
|
|
|
20
31
|
extra_opts: Optional[List[str]] = None,
|
|
21
32
|
):
|
|
22
33
|
build_configuration = _BuildConfig.parse_obj(build_configuration).__root__
|
|
34
|
+
if isinstance(build_configuration, TaskPythonBuild):
|
|
35
|
+
build_configuration_dict = build_configuration.dict()
|
|
36
|
+
build_configuration_dict.update({"type": "tfy-python-buildpack", "command": ""})
|
|
37
|
+
build_configuration = PythonBuild.parse_obj(build_configuration_dict)
|
|
38
|
+
if isinstance(build_configuration, TaskDockerFileBuild):
|
|
39
|
+
build_configuration_dict = build_configuration.dict()
|
|
40
|
+
build_configuration_dict.update({"type": "dockerfile"})
|
|
41
|
+
build_configuration = DockerFileBuild.parse_obj(build_configuration_dict)
|
|
42
|
+
|
|
23
43
|
builder = get_builder(build_configuration.type)
|
|
24
44
|
return builder(
|
|
25
45
|
build_configuration=build_configuration,
|
|
@@ -66,3 +66,7 @@ class Application(models.Application, DeployablePatchedModelBase):
|
|
|
66
66
|
return deploy_component(
|
|
67
67
|
component=self.__root__, workspace_fqn=workspace_fqn, wait=wait
|
|
68
68
|
)
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
class Workflow(models.Workflow, DeployablePatchedModelBase):
|
|
72
|
+
type: Literal["workflow"] = "workflow"
|
|
@@ -495,3 +495,21 @@ class DynamicVolumeConfig(models.DynamicVolumeConfig, PatchedModelBase):
|
|
|
495
495
|
|
|
496
496
|
class StaticVolumeConfig(models.StaticVolumeConfig, PatchedModelBase):
|
|
497
497
|
type: Literal["static"] = "static"
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
class PythonTaskConfig(models.PythonTaskConfig, PatchedModelBase):
|
|
501
|
+
type: Literal["python-task-config"] = "python-task-config"
|
|
502
|
+
resources: Optional[Resources] = Resources()
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
class ContainerTaskConfig(models.ContainerTaskConfig, PatchedModelBase):
|
|
506
|
+
type: Literal["container-task-config"] = "container-task-config"
|
|
507
|
+
resources: Optional[Resources] = Resources()
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
class TaskDockerFileBuild(models.TaskDockerFileBuild, PatchedModelBase):
|
|
511
|
+
type: Literal["task-dockerfile-build"] = "task-dockerfile-build"
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
class TaskPythonBuild(models.TaskPythonBuild, PatchedModelBase):
|
|
515
|
+
type: Literal["task-python-build"] = "task-python-build"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: truefoundry
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.0rc3
|
|
4
4
|
Summary: Truefoundry CLI
|
|
5
5
|
Author: Abhishek Choudhary
|
|
6
6
|
Author-email: abhishek@truefoundry.com
|
|
@@ -10,15 +10,17 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.10
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Provides-Extra: flyte
|
|
13
14
|
Provides-Extra: ml
|
|
14
15
|
Requires-Dist: GitPython (>=3.1.43,<3.2.0)
|
|
15
16
|
Requires-Dist: Mako (>=1.1.6,<2.0.0)
|
|
16
17
|
Requires-Dist: PyJWT (>=2.0.0,<3.0.0)
|
|
17
18
|
Requires-Dist: PyYAML (>=6.0.0,<7.0.0)
|
|
18
19
|
Requires-Dist: click (>=7.0.0,<9.0.0)
|
|
19
|
-
Requires-Dist: docker (>=
|
|
20
|
+
Requires-Dist: docker (>=6.1.2,<8.0.0)
|
|
20
21
|
Requires-Dist: fastapi (>=0.56.0,<0.200.0)
|
|
21
22
|
Requires-Dist: filelock (>=3.8.0,<4.0.0)
|
|
23
|
+
Requires-Dist: flytekit (==1.12.2) ; extra == "flyte"
|
|
22
24
|
Requires-Dist: gitignorefile (>=1.1.2,<1.2.0)
|
|
23
25
|
Requires-Dist: importlib-metadata (>=6.0.1,<8.0.0)
|
|
24
26
|
Requires-Dist: importlib-resources (>=5.2.0,<6.0.0)
|
|
@@ -25,9 +25,9 @@ truefoundry/autodeploy/utils/diff.py,sha256=Ef8Y-VffDKel_-q-GxRam6gqiv8qTLMcqVg6
|
|
|
25
25
|
truefoundry/autodeploy/utils/pydantic_compat.py,sha256=hEAUy5kLjhPdzw7yGZ2iXGMXbbMVXVlGzIofmyHafXQ,412
|
|
26
26
|
truefoundry/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
27
|
truefoundry/cli/__main__.py,sha256=Jap_IddZ9zNyMIyIkCw75xHQCN0WtV2dPZJ_pzdLsVc,916
|
|
28
|
-
truefoundry/deploy/__init__.py,sha256=
|
|
29
|
-
truefoundry/deploy/auto_gen/models.py,sha256=
|
|
30
|
-
truefoundry/deploy/builder/__init__.py,sha256=
|
|
28
|
+
truefoundry/deploy/__init__.py,sha256=0iIsvCvEwDlnzuPIFIFesCD4tmOEn8vUmnn6R2ck2ns,2470
|
|
29
|
+
truefoundry/deploy/auto_gen/models.py,sha256=vqMoCt2YGb1JFOHXd6597dcVv4IjmSMMZc6piTsSuQI,85304
|
|
30
|
+
truefoundry/deploy/builder/__init__.py,sha256=GSDz4smq-t750FpHaKGiauGoZilYmdZmaITXVWvGD6I,5032
|
|
31
31
|
truefoundry/deploy/builder/builders/__init__.py,sha256=tlFLXqyDaKLd4iZbo4Hcu_8gOmgtL6drnXpbmQ6x1P8,636
|
|
32
32
|
truefoundry/deploy/builder/builders/dockerfile.py,sha256=AXXTziCkaqIhuM_bwyD1vT1znOwemN1TKgU7eyo-KuM,1522
|
|
33
33
|
truefoundry/deploy/builder/builders/tfy_notebook_buildpack/__init__.py,sha256=eKbwgGV8ONe22iKW_0f3X0uQlw1t6z7kdKV4MPVkLfA,1341
|
|
@@ -103,10 +103,11 @@ truefoundry/deploy/lib/win32.py,sha256=1RcvPTdlOAJ48rt8rCbE2Ufha2ztRqBAE9dueNXAr
|
|
|
103
103
|
truefoundry/deploy/v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
104
104
|
truefoundry/deploy/v2/lib/__init__.py,sha256=WEiVMZXOVljzEE3tpGJil14liIn_PCDoACJ6b3tZ6sI,188
|
|
105
105
|
truefoundry/deploy/v2/lib/deploy.py,sha256=mR8wJ86jJFbko87TZYhIsEylQK5cj2X6BNq_uf-Img4,10123
|
|
106
|
-
truefoundry/deploy/v2/lib/deployable_patched_models.py,sha256=
|
|
106
|
+
truefoundry/deploy/v2/lib/deployable_patched_models.py,sha256=hAeEPN2We0vj46KzplPbmw0KlK1fiC8ictmGxZh1Fu4,2574
|
|
107
107
|
truefoundry/deploy/v2/lib/models.py,sha256=pSolLMTArDuYpeNsmeeS5DWliloN_iCDfZSpRllMHUg,1120
|
|
108
|
-
truefoundry/deploy/v2/lib/patched_models.py,sha256=
|
|
108
|
+
truefoundry/deploy/v2/lib/patched_models.py,sha256=h6gqvS5impDT9YjaF4Z_vrwZKPaKK5OanqM6_EuWh54,14970
|
|
109
109
|
truefoundry/deploy/v2/lib/source.py,sha256=VHKuFREiixUP40D3Mrz-TA70spu1M0RbCzl--qwlFaY,9263
|
|
110
|
+
truefoundry/flyte/__init__.py,sha256=_C6MzmiPzSzg5bktBL1t5PvHQrHuN4QU9p-GAtw8wfM,150
|
|
110
111
|
truefoundry/langchain/__init__.py,sha256=zeYKxKrQhfYXQuBec3wvB_ZqKowDUUjLUKUhbiu9ZFs,558
|
|
111
112
|
truefoundry/langchain/deprecated.py,sha256=8tfLHXwcifGl7DYhMNfzc4zRVCVqEgARg5BsbZp11NE,10835
|
|
112
113
|
truefoundry/langchain/truefoundry_chat.py,sha256=fvNIASWGsh_tgwAX-BFa60pNwWfOtrmowKrNgoBDdwo,4920
|
|
@@ -118,7 +119,7 @@ truefoundry/ml/__init__.py,sha256=yFjvF-e1RW488vLHgn5M7TXoajqww6grkKHb3mhqDEw,17
|
|
|
118
119
|
truefoundry/pydantic_v1.py,sha256=IJy5FtaPg-_H5XLRd9nueTuyijEJPdCa1vZ7-pinmRI,158
|
|
119
120
|
truefoundry/python_deploy_codegen.py,sha256=hd8XRytuT-U6AXSzYSjISbtYY4HLB_B1EeLB5TRDfNw,3947
|
|
120
121
|
truefoundry/version.py,sha256=-wbVGV2uJ2DVdmoji4rGfVIROKTXG5_7G6DRXjGj_fE,127
|
|
121
|
-
truefoundry-0.3.
|
|
122
|
-
truefoundry-0.3.
|
|
123
|
-
truefoundry-0.3.
|
|
124
|
-
truefoundry-0.3.
|
|
122
|
+
truefoundry-0.3.0rc3.dist-info/METADATA,sha256=5RP2v85wwnUUfVnEfoISVQFcA2OrWlvAWLuLQHcqD3s,2633
|
|
123
|
+
truefoundry-0.3.0rc3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
124
|
+
truefoundry-0.3.0rc3.dist-info/entry_points.txt,sha256=TXvUxQkI6zmqJuycPsyxEIMr3oqfDjgrWj0m_9X12x4,95
|
|
125
|
+
truefoundry-0.3.0rc3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|