acryl-datahub-cloud 0.3.7.7rc3__py3-none-any.whl → 0.3.8rc0__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 acryl-datahub-cloud might be problematic. Click here for more details.

Files changed (43) hide show
  1. acryl_datahub_cloud/_codegen_config.json +1 -1
  2. acryl_datahub_cloud/api/__init__.py +1 -0
  3. acryl_datahub_cloud/api/client.py +6 -0
  4. acryl_datahub_cloud/api/entity_versioning.py +167 -0
  5. acryl_datahub_cloud/lineage_features/source.py +22 -5
  6. acryl_datahub_cloud/metadata/_urns/urn_defs.py +54 -0
  7. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/common/__init__.py +2 -0
  8. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +2 -0
  9. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/structured/__init__.py +2 -0
  10. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/versionset/__init__.py +17 -0
  11. acryl_datahub_cloud/metadata/schema.avsc +312 -21
  12. acryl_datahub_cloud/metadata/schema_classes.py +420 -6
  13. acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +1 -1
  14. acryl_datahub_cloud/metadata/schemas/AssertionInferenceDetails.avsc +1 -1
  15. acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +1 -1
  16. acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +1 -1
  17. acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceInfo.avsc +6 -0
  18. acryl_datahub_cloud/metadata/schemas/DataHubViewInfo.avsc +2 -0
  19. acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +2 -1
  20. acryl_datahub_cloud/metadata/schemas/Deprecation.avsc +12 -0
  21. acryl_datahub_cloud/metadata/schemas/DynamicFormAssignment.avsc +2 -0
  22. acryl_datahub_cloud/metadata/schemas/Filter.avsc +2 -0
  23. acryl_datahub_cloud/metadata/schemas/MLFeatureProperties.avsc +51 -0
  24. acryl_datahub_cloud/metadata/schemas/MLModelDeploymentProperties.avsc +51 -0
  25. acryl_datahub_cloud/metadata/schemas/MLModelGroupProperties.avsc +51 -0
  26. acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc +2 -1
  27. acryl_datahub_cloud/metadata/schemas/MLModelProperties.avsc +51 -0
  28. acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyProperties.avsc +51 -0
  29. acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +20 -0
  30. acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +10 -1
  31. acryl_datahub_cloud/metadata/schemas/RecommendationModule.avsc +2 -0
  32. acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc +2 -1
  33. acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc +2 -1
  34. acryl_datahub_cloud/metadata/schemas/StructuredPropertyKey.avsc +1 -0
  35. acryl_datahub_cloud/metadata/schemas/StructuredPropertySettings.avsc +114 -0
  36. acryl_datahub_cloud/metadata/schemas/VersionProperties.avsc +212 -0
  37. acryl_datahub_cloud/metadata/schemas/VersionSetKey.avsc +26 -0
  38. acryl_datahub_cloud/metadata/schemas/VersionSetProperties.avsc +49 -0
  39. {acryl_datahub_cloud-0.3.7.7rc3.dist-info → acryl_datahub_cloud-0.3.8rc0.dist-info}/METADATA +40 -40
  40. {acryl_datahub_cloud-0.3.7.7rc3.dist-info → acryl_datahub_cloud-0.3.8rc0.dist-info}/RECORD +43 -35
  41. {acryl_datahub_cloud-0.3.7.7rc3.dist-info → acryl_datahub_cloud-0.3.8rc0.dist-info}/WHEEL +0 -0
  42. {acryl_datahub_cloud-0.3.7.7rc3.dist-info → acryl_datahub_cloud-0.3.8rc0.dist-info}/entry_points.txt +0 -0
  43. {acryl_datahub_cloud-0.3.7.7rc3.dist-info → acryl_datahub_cloud-0.3.8rc0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,114 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "structuredPropertySettings"
5
+ },
6
+ "name": "StructuredPropertySettings",
7
+ "namespace": "com.linkedin.pegasus2avro.structured",
8
+ "fields": [
9
+ {
10
+ "Searchable": {
11
+ "fieldType": "BOOLEAN"
12
+ },
13
+ "type": "boolean",
14
+ "name": "isHidden",
15
+ "default": false,
16
+ "doc": "Whether or not this asset should be hidden in the main application"
17
+ },
18
+ {
19
+ "Searchable": {
20
+ "fieldType": "BOOLEAN"
21
+ },
22
+ "type": "boolean",
23
+ "name": "showInSearchFilters",
24
+ "default": false,
25
+ "doc": "Whether or not this asset should be displayed as a search filter"
26
+ },
27
+ {
28
+ "Searchable": {
29
+ "fieldType": "BOOLEAN"
30
+ },
31
+ "type": "boolean",
32
+ "name": "showInAssetSummary",
33
+ "default": false,
34
+ "doc": "Whether or not this asset should be displayed in the asset sidebar"
35
+ },
36
+ {
37
+ "Searchable": {
38
+ "fieldType": "BOOLEAN"
39
+ },
40
+ "type": "boolean",
41
+ "name": "showAsAssetBadge",
42
+ "default": false,
43
+ "doc": "Whether or not this asset should be displayed as an asset badge on other\nasset's headers"
44
+ },
45
+ {
46
+ "Searchable": {
47
+ "fieldType": "BOOLEAN"
48
+ },
49
+ "type": "boolean",
50
+ "name": "showInColumnsTable",
51
+ "default": false,
52
+ "doc": "Whether or not this asset should be displayed as a column in the schema field table\nin a Dataset's \"Columns\" tab."
53
+ },
54
+ {
55
+ "Searchable": {
56
+ "/time": {
57
+ "fieldName": "lastModifiedSettings",
58
+ "fieldType": "DATETIME"
59
+ }
60
+ },
61
+ "type": [
62
+ "null",
63
+ {
64
+ "type": "record",
65
+ "name": "AuditStamp",
66
+ "namespace": "com.linkedin.pegasus2avro.common",
67
+ "fields": [
68
+ {
69
+ "type": "long",
70
+ "name": "time",
71
+ "doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
72
+ },
73
+ {
74
+ "java": {
75
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
76
+ },
77
+ "type": "string",
78
+ "name": "actor",
79
+ "doc": "The entity (e.g. a member URN) which will be credited for moving the resource/association/sub-resource into the specific lifecycle stage. It is also the one used to authorize the change.",
80
+ "Urn": "Urn"
81
+ },
82
+ {
83
+ "java": {
84
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
85
+ },
86
+ "type": [
87
+ "null",
88
+ "string"
89
+ ],
90
+ "name": "impersonator",
91
+ "default": null,
92
+ "doc": "The entity (e.g. a service URN) which performs the change on behalf of the Actor and must be authorized to act as the Actor.",
93
+ "Urn": "Urn"
94
+ },
95
+ {
96
+ "type": [
97
+ "null",
98
+ "string"
99
+ ],
100
+ "name": "message",
101
+ "default": null,
102
+ "doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
103
+ }
104
+ ],
105
+ "doc": "Data captured on a resource/association/sub-resource level giving insight into when that resource/association/sub-resource moved into a particular lifecycle stage, and who acted to move it into that specific lifecycle stage."
106
+ }
107
+ ],
108
+ "name": "lastModified",
109
+ "default": null,
110
+ "doc": "Last Modified Audit stamp"
111
+ }
112
+ ],
113
+ "doc": "Settings specific to a structured property entity"
114
+ }
@@ -0,0 +1,212 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "versionProperties"
5
+ },
6
+ "name": "VersionProperties",
7
+ "namespace": "com.linkedin.pegasus2avro.common",
8
+ "fields": [
9
+ {
10
+ "Relationship": {
11
+ "entityTypes": [
12
+ "versionSet"
13
+ ],
14
+ "name": "VersionOf"
15
+ },
16
+ "Searchable": {
17
+ "queryByDefault": false
18
+ },
19
+ "java": {
20
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
21
+ },
22
+ "type": "string",
23
+ "name": "versionSet",
24
+ "doc": "The linked Version Set entity that ties multiple versioned assets together",
25
+ "Urn": "Urn",
26
+ "entityTypes": [
27
+ "versionSet"
28
+ ]
29
+ },
30
+ {
31
+ "Searchable": {
32
+ "/versionTag": {
33
+ "fieldName": "version",
34
+ "queryByDefault": false
35
+ }
36
+ },
37
+ "type": {
38
+ "type": "record",
39
+ "name": "VersionTag",
40
+ "namespace": "com.linkedin.pegasus2avro.common",
41
+ "fields": [
42
+ {
43
+ "type": [
44
+ "null",
45
+ "string"
46
+ ],
47
+ "name": "versionTag",
48
+ "default": null
49
+ },
50
+ {
51
+ "type": [
52
+ "null",
53
+ {
54
+ "type": "record",
55
+ "name": "MetadataAttribution",
56
+ "namespace": "com.linkedin.pegasus2avro.common",
57
+ "fields": [
58
+ {
59
+ "type": "long",
60
+ "name": "time",
61
+ "doc": "When this metadata was updated."
62
+ },
63
+ {
64
+ "java": {
65
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
66
+ },
67
+ "type": "string",
68
+ "name": "actor",
69
+ "doc": "The entity (e.g. a member URN) responsible for applying the assocated metadata. This can\neither be a user (in case of UI edits) or the datahub system for automation.",
70
+ "Urn": "Urn"
71
+ },
72
+ {
73
+ "java": {
74
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
75
+ },
76
+ "type": [
77
+ "null",
78
+ "string"
79
+ ],
80
+ "name": "source",
81
+ "default": null,
82
+ "doc": "The DataHub source responsible for applying the associated metadata. This will only be filled out\nwhen a DataHub source is responsible. This includes the specific metadata test urn, the automation urn.",
83
+ "Urn": "Urn"
84
+ },
85
+ {
86
+ "type": {
87
+ "type": "map",
88
+ "values": "string"
89
+ },
90
+ "name": "sourceDetail",
91
+ "default": {},
92
+ "doc": "The details associated with why this metadata was applied. For example, this could include\nthe actual regex rule, sql statement, ingestion pipeline ID, etc.\nAlso can include flags like 'propagated'=true or 'inferred'=true."
93
+ }
94
+ ],
95
+ "doc": "Information about who, why, and how this metadata was applied"
96
+ }
97
+ ],
98
+ "name": "metadataAttribution",
99
+ "default": null
100
+ }
101
+ ],
102
+ "doc": "A resource-defined string representing the resource state for the purpose of concurrency control"
103
+ },
104
+ "name": "version",
105
+ "doc": "Label for this versioned asset, is unique within a version set"
106
+ },
107
+ {
108
+ "Searchable": {
109
+ "/*/versionTag": {
110
+ "fieldName": "aliases",
111
+ "queryByDefault": false
112
+ }
113
+ },
114
+ "type": {
115
+ "type": "array",
116
+ "items": "com.linkedin.pegasus2avro.common.VersionTag"
117
+ },
118
+ "name": "aliases",
119
+ "default": [],
120
+ "doc": "Associated aliases for this versioned asset"
121
+ },
122
+ {
123
+ "type": [
124
+ "null",
125
+ "string"
126
+ ],
127
+ "name": "comment",
128
+ "default": null,
129
+ "doc": "Comment documenting what this version was created for, changes, or represents"
130
+ },
131
+ {
132
+ "Searchable": {
133
+ "fieldName": "versionSortId",
134
+ "queryByDefault": false
135
+ },
136
+ "type": "string",
137
+ "name": "sortId",
138
+ "doc": "Sort identifier that determines where a version lives in the order of the Version Set.\nWhat this looks like depends on the Version Scheme. For sort ids generated by DataHub we use an 8 character string representation."
139
+ },
140
+ {
141
+ "type": [
142
+ "null",
143
+ {
144
+ "type": "record",
145
+ "name": "AuditStamp",
146
+ "namespace": "com.linkedin.pegasus2avro.common",
147
+ "fields": [
148
+ {
149
+ "type": "long",
150
+ "name": "time",
151
+ "doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
152
+ },
153
+ {
154
+ "java": {
155
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
156
+ },
157
+ "type": "string",
158
+ "name": "actor",
159
+ "doc": "The entity (e.g. a member URN) which will be credited for moving the resource/association/sub-resource into the specific lifecycle stage. It is also the one used to authorize the change.",
160
+ "Urn": "Urn"
161
+ },
162
+ {
163
+ "java": {
164
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
165
+ },
166
+ "type": [
167
+ "null",
168
+ "string"
169
+ ],
170
+ "name": "impersonator",
171
+ "default": null,
172
+ "doc": "The entity (e.g. a service URN) which performs the change on behalf of the Actor and must be authorized to act as the Actor.",
173
+ "Urn": "Urn"
174
+ },
175
+ {
176
+ "type": [
177
+ "null",
178
+ "string"
179
+ ],
180
+ "name": "message",
181
+ "default": null,
182
+ "doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
183
+ }
184
+ ],
185
+ "doc": "Data captured on a resource/association/sub-resource level giving insight into when that resource/association/sub-resource moved into a particular lifecycle stage, and who acted to move it into that specific lifecycle stage."
186
+ }
187
+ ],
188
+ "name": "sourceCreatedTimestamp",
189
+ "default": null,
190
+ "doc": "Timestamp reflecting when this asset version was created in the source system."
191
+ },
192
+ {
193
+ "type": [
194
+ "null",
195
+ "com.linkedin.pegasus2avro.common.AuditStamp"
196
+ ],
197
+ "name": "metadataCreatedTimestamp",
198
+ "default": null,
199
+ "doc": "Timestamp reflecting when the metadata for this version was created in DataHub"
200
+ },
201
+ {
202
+ "type": [
203
+ "null",
204
+ "boolean"
205
+ ],
206
+ "name": "isLatest",
207
+ "default": null,
208
+ "doc": "Marks whether this version is currently the latest. Set by a side effect and should not be modified by API."
209
+ }
210
+ ],
211
+ "doc": "Properties about a versioned asset i.e. dataset, ML Model, etc."
212
+ }
@@ -0,0 +1,26 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "versionSetKey",
5
+ "keyForEntity": "versionSet",
6
+ "entityCategory": "core",
7
+ "entityAspects": [
8
+ "versionSetProperties"
9
+ ]
10
+ },
11
+ "name": "VersionSetKey",
12
+ "namespace": "com.linkedin.pegasus2avro.metadata.key",
13
+ "fields": [
14
+ {
15
+ "type": "string",
16
+ "name": "id",
17
+ "doc": "ID of the Version Set, generated from platform + asset id / name"
18
+ },
19
+ {
20
+ "type": "string",
21
+ "name": "entityType",
22
+ "doc": "Type of entities included in version set, limits to a single entity type between linked versioned entities"
23
+ }
24
+ ],
25
+ "doc": "Key for a Version Set entity"
26
+ }
@@ -0,0 +1,49 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "versionSetProperties"
5
+ },
6
+ "name": "VersionSetProperties",
7
+ "namespace": "com.linkedin.pegasus2avro.versionset",
8
+ "fields": [
9
+ {
10
+ "Searchable": {
11
+ "/*": {
12
+ "fieldType": "TEXT",
13
+ "queryByDefault": true
14
+ }
15
+ },
16
+ "type": {
17
+ "type": "map",
18
+ "values": "string"
19
+ },
20
+ "name": "customProperties",
21
+ "default": {},
22
+ "doc": "Custom property bag."
23
+ },
24
+ {
25
+ "Searchable": {
26
+ "queryByDefault": "false"
27
+ },
28
+ "java": {
29
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
30
+ },
31
+ "type": "string",
32
+ "name": "latest",
33
+ "doc": "The latest versioned entity linked to in this version set",
34
+ "Urn": "Urn"
35
+ },
36
+ {
37
+ "type": {
38
+ "type": "enum",
39
+ "name": "VersioningScheme",
40
+ "namespace": "com.linkedin.pegasus2avro.versionset",
41
+ "symbols": [
42
+ "ALPHANUMERIC_GENERATED_BY_DATAHUB"
43
+ ]
44
+ },
45
+ "name": "versioningScheme",
46
+ "doc": "What versioning scheme is being utilized for the versioned entities sort criterion. Static once set"
47
+ }
48
+ ]
49
+ }
@@ -1,80 +1,80 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: acryl-datahub-cloud
3
- Version: 0.3.7.7rc3
3
+ Version: 0.3.8rc0
4
4
  Requires-Dist: avro-gen3==0.7.16
5
5
  Requires-Dist: acryl-datahub
6
6
  Provides-Extra: datahub-lineage-features
7
7
  Requires-Dist: duckdb; extra == "datahub-lineage-features"
8
- Requires-Dist: pandas; extra == "datahub-lineage-features"
8
+ Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
9
9
  Requires-Dist: pyarrow; extra == "datahub-lineage-features"
10
+ Requires-Dist: pandas; extra == "datahub-lineage-features"
10
11
  Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
11
- Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
12
12
  Provides-Extra: datahub-reporting-forms
13
+ Requires-Dist: boto3; extra == "datahub-reporting-forms"
13
14
  Requires-Dist: duckdb; extra == "datahub-reporting-forms"
14
- Requires-Dist: pandas; extra == "datahub-reporting-forms"
15
15
  Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
16
+ Requires-Dist: pandas; extra == "datahub-reporting-forms"
16
17
  Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
17
- Requires-Dist: boto3; extra == "datahub-reporting-forms"
18
18
  Provides-Extra: datahub-reporting-extract-graph
19
- Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
19
+ Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
20
20
  Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
21
- Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
21
+ Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
22
22
  Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
23
+ Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
23
24
  Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
24
- Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
25
25
  Provides-Extra: datahub-reporting-extract-sql
26
+ Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
26
27
  Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
27
- Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
28
28
  Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
29
+ Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
29
30
  Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
30
- Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
31
31
  Provides-Extra: datahub-usage-feature-reporting
32
+ Requires-Dist: duckdb; extra == "datahub-usage-feature-reporting"
33
+ Requires-Dist: polars<=1.16.0; extra == "datahub-usage-feature-reporting"
32
34
  Requires-Dist: pandas; extra == "datahub-usage-feature-reporting"
33
- Requires-Dist: pyarrow; extra == "datahub-usage-feature-reporting"
35
+ Requires-Dist: pydantic<2; extra == "datahub-usage-feature-reporting"
34
36
  Requires-Dist: numpy<2; extra == "datahub-usage-feature-reporting"
37
+ Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-feature-reporting"
38
+ Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-feature-reporting"
35
39
  Requires-Dist: boto3; extra == "datahub-usage-feature-reporting"
36
- Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-feature-reporting"
37
40
  Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-feature-reporting"
38
- Requires-Dist: duckdb; extra == "datahub-usage-feature-reporting"
39
- Requires-Dist: pydantic<2; extra == "datahub-usage-feature-reporting"
40
- Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-feature-reporting"
41
- Requires-Dist: polars<=1.16.0; extra == "datahub-usage-feature-reporting"
42
- Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-feature-reporting"
41
+ Requires-Dist: pyarrow; extra == "datahub-usage-feature-reporting"
42
+ Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-feature-reporting"
43
43
  Provides-Extra: acryl-cs-issues
44
- Requires-Dist: zenpy; extra == "acryl-cs-issues"
45
44
  Requires-Dist: jinja2; extra == "acryl-cs-issues"
46
45
  Requires-Dist: openai; extra == "acryl-cs-issues"
47
46
  Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
47
+ Requires-Dist: zenpy; extra == "acryl-cs-issues"
48
48
  Provides-Extra: all
49
- Requires-Dist: pandas; extra == "all"
50
- Requires-Dist: pyarrow; extra == "all"
51
- Requires-Dist: numpy<2; extra == "all"
52
- Requires-Dist: boto3; extra == "all"
49
+ Requires-Dist: openai; extra == "all"
50
+ Requires-Dist: duckdb; extra == "all"
53
51
  Requires-Dist: jinja2; extra == "all"
54
- Requires-Dist: pyarrow<=18.0.0; extra == "all"
55
- Requires-Dist: elasticsearch==7.13.4; extra == "all"
52
+ Requires-Dist: polars<=1.16.0; extra == "all"
56
53
  Requires-Dist: zenpy; extra == "all"
57
- Requires-Dist: duckdb; extra == "all"
54
+ Requires-Dist: pandas; extra == "all"
58
55
  Requires-Dist: pydantic<2; extra == "all"
59
- Requires-Dist: opensearch-py==2.4.2; extra == "all"
60
- Requires-Dist: slack-sdk; extra == "all"
61
- Requires-Dist: polars<=1.16.0; extra == "all"
56
+ Requires-Dist: numpy<2; extra == "all"
62
57
  Requires-Dist: scipy<=1.14.1; extra == "all"
63
- Requires-Dist: openai; extra == "all"
58
+ Requires-Dist: slack-sdk; extra == "all"
59
+ Requires-Dist: elasticsearch==7.13.4; extra == "all"
60
+ Requires-Dist: boto3; extra == "all"
61
+ Requires-Dist: opensearch-py==2.4.2; extra == "all"
62
+ Requires-Dist: pyarrow; extra == "all"
63
+ Requires-Dist: pyarrow<=18.0.0; extra == "all"
64
64
  Provides-Extra: dev
65
+ Requires-Dist: openai; extra == "dev"
66
+ Requires-Dist: duckdb; extra == "dev"
67
+ Requires-Dist: jinja2; extra == "dev"
68
+ Requires-Dist: polars<=1.16.0; extra == "dev"
69
+ Requires-Dist: zenpy; extra == "dev"
65
70
  Requires-Dist: pandas; extra == "dev"
66
- Requires-Dist: pyarrow; extra == "dev"
71
+ Requires-Dist: pydantic<2; extra == "dev"
67
72
  Requires-Dist: numpy<2; extra == "dev"
73
+ Requires-Dist: scipy<=1.14.1; extra == "dev"
74
+ Requires-Dist: slack-sdk; extra == "dev"
75
+ Requires-Dist: opensearch-py==2.4.2; extra == "dev"
76
+ Requires-Dist: elasticsearch==7.13.4; extra == "dev"
68
77
  Requires-Dist: boto3; extra == "dev"
69
78
  Requires-Dist: acryl-datahub[dev]; extra == "dev"
79
+ Requires-Dist: pyarrow; extra == "dev"
70
80
  Requires-Dist: pyarrow<=18.0.0; extra == "dev"
71
- Requires-Dist: jinja2; extra == "dev"
72
- Requires-Dist: elasticsearch==7.13.4; extra == "dev"
73
- Requires-Dist: zenpy; extra == "dev"
74
- Requires-Dist: duckdb; extra == "dev"
75
- Requires-Dist: pydantic<2; extra == "dev"
76
- Requires-Dist: opensearch-py==2.4.2; extra == "dev"
77
- Requires-Dist: slack-sdk; extra == "dev"
78
- Requires-Dist: polars<=1.16.0; extra == "dev"
79
- Requires-Dist: scipy<=1.14.1; extra == "dev"
80
- Requires-Dist: openai; extra == "dev"