ansys-api-systemcoupling 0.1.0__py3-none-any.whl → 0.2.0__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.
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.2.0
@@ -1,8 +1,8 @@
1
- """Autogenerated Python gRPC interface package for ansys-api-systemcoupling."""
2
-
3
- import pathlib
4
-
5
- __all__ = ["__version__"]
6
-
7
- with open(pathlib.Path(__file__).parent / "VERSION", encoding="utf-8") as f:
8
- __version__ = f.read().strip()
1
+ """Autogenerated Python gRPC interface package for ansys-api-systemcoupling."""
2
+
3
+ import pathlib
4
+
5
+ __all__ = ["__version__"]
6
+
7
+ with open(pathlib.Path(__file__).parent / "VERSION", encoding="utf-8") as f:
8
+ __version__ = f.read().strip()
@@ -1,23 +1,23 @@
1
- // Copyright (C) 2023 ANSYS, Inc. and/or its affiliates.
2
- syntax = "proto3";
3
-
4
- package ansys.api.systemcoupling.v0;
5
-
6
- import "ansys/api/systemcoupling/v0/variant.proto";
7
-
8
- service Command {
9
- rpc InvokeCommand (CommandRequest) returns (CommandResponse) {}
10
- }
11
-
12
- message CommandRequest {
13
- message Argument {
14
- string name = 1;
15
- Variant val = 2;
16
- }
17
- string command = 1;
18
- repeated Argument args = 2;
19
- }
20
-
21
- message CommandResponse {
22
- Variant result = 1;
23
- }
1
+ // Copyright (C) 2023 ANSYS, Inc. and/or its affiliates.
2
+ syntax = "proto3";
3
+
4
+ package ansys.api.systemcoupling.v0;
5
+
6
+ import "ansys/api/systemcoupling/v0/variant.proto";
7
+
8
+ service Command {
9
+ rpc InvokeCommand (CommandRequest) returns (CommandResponse) {}
10
+ }
11
+
12
+ message CommandRequest {
13
+ message Argument {
14
+ string name = 1;
15
+ Variant val = 2;
16
+ }
17
+ string command = 1;
18
+ repeated Argument args = 2;
19
+ }
20
+
21
+ message CommandResponse {
22
+ Variant result = 1;
23
+ }
@@ -1,9 +1,9 @@
1
- // Copyright (C) 2023 ANSYS, Inc. and/or its affiliates.
2
- syntax = "proto3";
3
-
4
- package ansys.api.systemcoupling.v0;
5
-
6
- message ErrorDetails {
7
- string exception_classname = 1;
8
- string stack_trace = 2;
1
+ // Copyright (C) 2023 ANSYS, Inc. and/or its affiliates.
2
+ syntax = "proto3";
3
+
4
+ package ansys.api.systemcoupling.v0;
5
+
6
+ message ErrorDetails {
7
+ string exception_classname = 1;
8
+ string stack_trace = 2;
9
9
  }
@@ -1,15 +1,15 @@
1
- // Copyright (C) 2023 ANSYS, Inc. and/or its affiliates.
2
- syntax = "proto3";
3
-
4
- package ansys.api.systemcoupling.v0;
5
-
6
- service OutputStream {
7
- rpc BeginStdStreaming(StdStreamRequest) returns (stream StdStreamResponse) {}
8
- }
9
-
10
- message StdStreamRequest {
11
- }
12
-
13
- message StdStreamResponse {
14
- string text = 1;
15
- }
1
+ // Copyright (C) 2023 ANSYS, Inc. and/or its affiliates.
2
+ syntax = "proto3";
3
+
4
+ package ansys.api.systemcoupling.v0;
5
+
6
+ service OutputStream {
7
+ rpc BeginStdStreaming(StdStreamRequest) returns (stream StdStreamResponse) {}
8
+ }
9
+
10
+ message StdStreamRequest {
11
+ }
12
+
13
+ message StdStreamResponse {
14
+ string text = 1;
15
+ }
@@ -1,15 +1,15 @@
1
- // Copyright (C) 2023 ANSYS, Inc. and/or its affiliates.
2
- syntax = "proto3";
3
-
4
- package ansys.api.systemcoupling.v0;
5
-
6
- service Process {
7
- rpc Ping (PingRequest) returns (PingResponse) {}
8
- rpc Quit (QuitRequest) returns (QuitResponse) {}
9
- }
10
-
11
- message PingRequest {}
12
- message PingResponse {}
13
-
14
- message QuitRequest {}
15
- message QuitResponse {}
1
+ // Copyright (C) 2023 ANSYS, Inc. and/or its affiliates.
2
+ syntax = "proto3";
3
+
4
+ package ansys.api.systemcoupling.v0;
5
+
6
+ service Process {
7
+ rpc Ping (PingRequest) returns (PingResponse) {}
8
+ rpc Quit (QuitRequest) returns (QuitResponse) {}
9
+ }
10
+
11
+ message PingRequest {}
12
+ message PingResponse {}
13
+
14
+ message QuitRequest {}
15
+ message QuitResponse {}
@@ -1,30 +1,30 @@
1
- // Copyright (C) 2023 ANSYS, Inc. and/or its affiliates.
2
- syntax = "proto3";
3
-
4
- package ansys.api.systemcoupling.v0;
5
-
6
- service Solution {
7
- rpc Solve (SolveRequest) returns (SolveResponse) {}
8
- rpc Interrupt (InterruptRequest) returns (InterruptResponse) {}
9
- rpc Abort (AbortRequest) returns (AbortResponse) {}
10
- }
11
-
12
- // Note that all responses are currently empty messages
13
- // In particular no status info for solve is returned -
14
- // failure or early termination of solve will be
15
- // communicated by an exception as for commands
16
- // via the Command service.
17
-
18
- message SolveRequest {}
19
- message SolveResponse {}
20
-
21
- message InterruptRequest {
22
- string reason = 1;
23
- }
24
- message InterruptResponse {}
25
-
26
- message AbortRequest {
27
- string reason = 1;
28
- }
29
- message AbortResponse {}
30
-
1
+ // Copyright (C) 2023 ANSYS, Inc. and/or its affiliates.
2
+ syntax = "proto3";
3
+
4
+ package ansys.api.systemcoupling.v0;
5
+
6
+ service Solution {
7
+ rpc Solve (SolveRequest) returns (SolveResponse) {}
8
+ rpc Interrupt (InterruptRequest) returns (InterruptResponse) {}
9
+ rpc Abort (AbortRequest) returns (AbortResponse) {}
10
+ }
11
+
12
+ // Note that all responses are currently empty messages
13
+ // In particular no status info for solve is returned -
14
+ // failure or early termination of solve will be
15
+ // communicated by an exception as for commands
16
+ // via the Command service.
17
+
18
+ message SolveRequest {}
19
+ message SolveResponse {}
20
+
21
+ message InterruptRequest {
22
+ string reason = 1;
23
+ }
24
+ message InterruptResponse {}
25
+
26
+ message AbortRequest {
27
+ string reason = 1;
28
+ }
29
+ message AbortResponse {}
30
+
@@ -1,51 +1,51 @@
1
- // Copyright (C) 2023 ANSYS, Inc. and/or its affiliates.
2
- syntax = "proto3";
3
-
4
- package ansys.api.systemcoupling.v0;
5
-
6
- enum NoneValue {
7
- NONE_VALUE=0;
8
- }
9
-
10
- message StringVector {
11
- repeated string item = 1;
12
- }
13
-
14
- message DoubleVector {
15
- repeated double item = 1;
16
- }
17
-
18
- message BoolVector {
19
- repeated bool item = 1;
20
- }
21
-
22
- message Int64Vector {
23
- repeated sint64 item = 1;
24
- }
25
-
26
- message VariantMap {
27
- map<string, Variant> item = 1;
28
- }
29
-
30
- message VariantVector {
31
- repeated Variant item = 1;
32
- }
33
-
34
- message Variant {
35
- oneof as {
36
- NoneValue none_state = 1;
37
-
38
- bool bool_state = 2;
39
- sint64 int64_state = 3;
40
- double double_state = 5;
41
- string string_state = 6;
42
-
43
- BoolVector bool_vector_state = 7;
44
- Int64Vector int64_vector_state = 8;
45
- DoubleVector double_vector_state = 9;
46
- StringVector string_vector_state = 10;
47
- VariantVector variant_vector_state = 11;
48
- VariantMap variant_map_state = 12;
49
- }
50
- }
51
-
1
+ // Copyright (C) 2023 ANSYS, Inc. and/or its affiliates.
2
+ syntax = "proto3";
3
+
4
+ package ansys.api.systemcoupling.v0;
5
+
6
+ enum NoneValue {
7
+ NONE_VALUE=0;
8
+ }
9
+
10
+ message StringVector {
11
+ repeated string item = 1;
12
+ }
13
+
14
+ message DoubleVector {
15
+ repeated double item = 1;
16
+ }
17
+
18
+ message BoolVector {
19
+ repeated bool item = 1;
20
+ }
21
+
22
+ message Int64Vector {
23
+ repeated sint64 item = 1;
24
+ }
25
+
26
+ message VariantMap {
27
+ map<string, Variant> item = 1;
28
+ }
29
+
30
+ message VariantVector {
31
+ repeated Variant item = 1;
32
+ }
33
+
34
+ message Variant {
35
+ oneof as {
36
+ NoneValue none_state = 1;
37
+
38
+ bool bool_state = 2;
39
+ sint64 int64_state = 3;
40
+ double double_state = 5;
41
+ string string_state = 6;
42
+
43
+ BoolVector bool_vector_state = 7;
44
+ Int64Vector int64_vector_state = 8;
45
+ DoubleVector double_vector_state = 9;
46
+ StringVector string_vector_state = 10;
47
+ VariantVector variant_vector_state = 11;
48
+ VariantMap variant_map_state = 12;
49
+ }
50
+ }
51
+
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2022 ANSYS, Inc. All rights reserved.
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2022 ANSYS, Inc. All rights reserved.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,74 +1,74 @@
1
- Metadata-Version: 2.1
2
- Name: ansys-api-systemcoupling
3
- Version: 0.1.0
4
- Summary: Autogenerated python gRPC interface package for ansys-api-systemcoupling, built on 13:54:19 on 21 February 2023
5
- Home-page: https://github.com/ansys/ansys-api-systemcoupling
6
- Author: ANSYS, Inc.
7
- Author-email: support@ansys.com
8
- License: MIT
9
- Requires-Python: >=3.7
10
- Description-Content-Type: text/markdown
11
- License-File: LICENSE
12
- Requires-Dist: grpcio (~=1.30)
13
- Requires-Dist: protobuf (~=3.20)
14
-
15
- ### ansys-api-systemcoupling gRPC Interface Package
16
-
17
- This Python package contains the auto-generated gRPC Python interface files for
18
- System Coupling.
19
-
20
-
21
- #### Installation
22
-
23
- Provided that these wheels have been published to public PyPI, they can be
24
- installed with:
25
-
26
- ```
27
- pip install ansys-api-systemcoupling
28
- ```
29
-
30
- #### Build
31
-
32
- To build the gRPC packages, run:
33
-
34
- ```
35
- pip install build
36
- python -m build
37
- ```
38
-
39
- This will create both the source distribution containing just the protofiles
40
- along with the wheel containing the protofiles and build Python interface
41
- files.
42
-
43
- Note that the interface files are identical regardless of the version of Python
44
- used to generate them, but the last pre-built wheel for ``grpcio~=1.30`` was
45
- Python 3.7, so to improve your build time, use Python 3.7 when building the
46
- wheel.
47
-
48
-
49
- #### Manual Deployment
50
-
51
- After building the packages, manually deploy them with:
52
-
53
- ```
54
- pip install twine
55
- twine upload dist/*
56
- ```
57
-
58
- Note that this is automatically done through CI/CD.
59
-
60
-
61
- #### Automatic Deployment
62
-
63
- This repository contains GitHub CI/CD that enables the automatic building of
64
- source and wheel packages for these gRPC Python interface files. By default,
65
- these are built on PRs, the main branch, and on tags when pushing. Artifacts
66
- are uploaded for each PR.
67
-
68
- To publicly release wheels to PyPI, ensure your branch is up-to-date and then
69
- push tags. For example, for the version ``v0.5.0``.
70
-
71
- ```bash
72
- git tag v0.5.0
73
- git push --tags
74
- ```
1
+ Metadata-Version: 2.1
2
+ Name: ansys-api-systemcoupling
3
+ Version: 0.2.0
4
+ Summary: Autogenerated python gRPC interface package for ansys-api-systemcoupling, built on 15:37:55 on 09 July 2024
5
+ Home-page: https://github.com/ansys/ansys-api-systemcoupling
6
+ Author: ANSYS, Inc.
7
+ Author-email: support@ansys.com
8
+ License: MIT
9
+ Requires-Python: >=3.7
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: grpcio ~=1.30
13
+ Requires-Dist: protobuf <5,>=3.19
14
+
15
+ ### ansys-api-systemcoupling gRPC Interface Package
16
+
17
+ This Python package contains the auto-generated gRPC Python interface files for
18
+ System Coupling.
19
+
20
+
21
+ #### Installation
22
+
23
+ Provided that these wheels have been published to public PyPI, they can be
24
+ installed with:
25
+
26
+ ```
27
+ pip install ansys-api-systemcoupling
28
+ ```
29
+
30
+ #### Build
31
+
32
+ To build the gRPC packages, run:
33
+
34
+ ```
35
+ pip install build
36
+ python -m build
37
+ ```
38
+
39
+ This will create both the source distribution containing just the protofiles
40
+ along with the wheel containing the protofiles and build Python interface
41
+ files.
42
+
43
+ Note that the interface files are identical regardless of the version of Python
44
+ used to generate them, but the last pre-built wheel for ``grpcio~=1.30`` was
45
+ Python 3.7, so to improve your build time, use Python 3.7 when building the
46
+ wheel.
47
+
48
+
49
+ #### Manual Deployment
50
+
51
+ After building the packages, manually deploy them with:
52
+
53
+ ```
54
+ pip install twine
55
+ twine upload dist/*
56
+ ```
57
+
58
+ Note that this is automatically done through CI/CD.
59
+
60
+
61
+ #### Automatic Deployment
62
+
63
+ This repository contains GitHub CI/CD that enables the automatic building of
64
+ source and wheel packages for these gRPC Python interface files. By default,
65
+ these are built on PRs, the main branch, and on tags when pushing. Artifacts
66
+ are uploaded for each PR.
67
+
68
+ To publicly release wheels to PyPI, ensure your branch is up-to-date and then
69
+ push tags. For example, for the version ``v0.5.0``.
70
+
71
+ ```bash
72
+ git tag v0.5.0
73
+ git push --tags
74
+ ```
@@ -1,39 +1,39 @@
1
- ansys/api/systemcoupling/VERSION,sha256=atlhOkVXmNbZLl9fOQq0uqcFlryGntaxf1zdKyhjXwY,5
2
- ansys/api/systemcoupling/__init__.py,sha256=f0IatBDjBYdnOodZcqBeXyjIYYPuAOHIGeeAaGwKrCw,244
1
+ ansys/api/systemcoupling/VERSION,sha256=kR_AxIywxwYB21d1qb7xt0DcTMn5tGOJufBWP-frlNc,5
2
+ ansys/api/systemcoupling/__init__.py,sha256=i4E-euAg0L4fE_SHeh9Bogb8Jm4-tNSw2y_CPDSmFOk,236
3
3
  ansys/api/systemcoupling/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- ansys/api/systemcoupling/v0/command.proto,sha256=L5tLyShTk7n5xFy8bNoCaGVb1kJQ0KOLlP5e-J8aT6k,475
4
+ ansys/api/systemcoupling/v0/command.proto,sha256=CjFLYU9gQ6i6lmm3VfwqsrxQNdkuJ8NQ_zEtmF4EHAw,452
5
5
  ansys/api/systemcoupling/v0/command_pb2.py,sha256=7Ww-D9SXJyepkSdvKoaTB8Bm8VP77wfdL1wTA_-wGrQ,3112
6
6
  ansys/api/systemcoupling/v0/command_pb2.pyi,sha256=Vo6CUilCkHZN-T73l4H4lbsDl62PY5wbGx_UD0R06IQ,2420
7
7
  ansys/api/systemcoupling/v0/command_pb2_grpc.py,sha256=avLCiTV2m0FOuO5yoc08-qF1nGM-6G5G8KsyV5Enkzg,2822
8
8
  ansys/api/systemcoupling/v0/command_pb2_grpc.pyi,sha256=xxuG_jQZoVUHaAWMpU2W9Xo-U9QSmxodcCU9qgFM6sE,788
9
- ansys/api/systemcoupling/v0/error.proto,sha256=FSipcjXzldIwiTKxBN9gob5gbolRJ9D6dXHGmlELaDQ,207
9
+ ansys/api/systemcoupling/v0/error.proto,sha256=_x1-9BbeIiYy0baozaEpeI6BnB83R5IYNoDYy_InQE4,199
10
10
  ansys/api/systemcoupling/v0/error_pb2.py,sha256=uim_MDfabz4UrWOLvXftVylXU-MooyTJ_yF3JNX6PM4,1372
11
11
  ansys/api/systemcoupling/v0/error_pb2.pyi,sha256=ooWFgvYy6QTvptSIu5RSiG84rNnEh3OTcxp_dJ-_dvU,879
12
12
  ansys/api/systemcoupling/v0/error_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
13
13
  ansys/api/systemcoupling/v0/error_pb2_grpc.pyi,sha256=ff2TSiLVnG6IVQcTGzb2DIH3XRSoAvAo_RMcvbMFyc0,76
14
- ansys/api/systemcoupling/v0/output_stream.proto,sha256=PjynWg6fluunCxIH9VTj4g1cPsweelT_N-EERtsL3gU,315
14
+ ansys/api/systemcoupling/v0/output_stream.proto,sha256=Hx_JQEpAbui83Y1qF6rva8hjEgsjBytbH6cUtQ1L1Nc,300
15
15
  ansys/api/systemcoupling/v0/output_stream_pb2.py,sha256=m_SQafBYNmvVrD_ZNU4ta41wemeiQdWZJUw_Bmya6g0,2217
16
16
  ansys/api/systemcoupling/v0/output_stream_pb2.pyi,sha256=8ELqb9MKLrUse-Ih36yJW1Vg7EmALvvEX4Hon-Loaaw,880
17
17
  ansys/api/systemcoupling/v0/output_stream_pb2_grpc.py,sha256=o_35WUECubK-KEBJsC4urEebmxMioe5XfZ9DkmoZLps,2955
18
18
  ansys/api/systemcoupling/v0/output_stream_pb2_grpc.pyi,sha256=r2w03mm6BxbnBWzZ04Jfqsu3e13qVyVRjmM4VW9X5do,886
19
- ansys/api/systemcoupling/v0/process.proto,sha256=QMk_G7xX_seaEY5ekwy3ZXQD30AuLB69mthKl8dwX4Q,348
19
+ ansys/api/systemcoupling/v0/process.proto,sha256=-IN2ThCTWvhdBey_FTwdr2sV4aXSkfAOeJQRlLCjnEM,333
20
20
  ansys/api/systemcoupling/v0/process_pb2.py,sha256=u9Nd9saG6RVYjrUmTjaDk9QhkyKKPRiZ3dL8gKjNnUM,3049
21
21
  ansys/api/systemcoupling/v0/process_pb2.pyi,sha256=kadtNGYZyZmydeS9HOhei04aWb4ydkSFvjU1tCldmZI,984
22
22
  ansys/api/systemcoupling/v0/process_pb2_grpc.py,sha256=-LPm8eQj_gSbgexQybsnmAuEEWPcUioUZTQF879_XjY,4478
23
23
  ansys/api/systemcoupling/v0/process_pb2_grpc.pyi,sha256=mFbC50tl0lKDK118uI1xUd8LAj6-9ZlGax9vCCezYrg,1148
24
- ansys/api/systemcoupling/v0/solution.proto,sha256=jw7fwCj33qq-rFPxecOacQ73O5C9gKjZjtG0f7AbAMo,781
24
+ ansys/api/systemcoupling/v0/solution.proto,sha256=crjdhs_JoULifdzGuXqkGEysY5ViVcscWhBoWiaGS9o,751
25
25
  ansys/api/systemcoupling/v0/solution_pb2.py,sha256=pWfLY-0AqoQWgbM3Fpp8udbntgRmBDOn4tU3dX0fnvI,4357
26
26
  ansys/api/systemcoupling/v0/solution_pb2.pyi,sha256=vX2z5g1tcOgASWpfMAthNdzzRio9EO998Xpd2IBtSAE,2150
27
27
  ansys/api/systemcoupling/v0/solution_pb2_grpc.py,sha256=E8VNoQhfyCFbiJAOMcEvehklEdxFpUd94JWlkQfvrQs,6337
28
28
  ansys/api/systemcoupling/v0/solution_pb2_grpc.pyi,sha256=bkwkVg0HUagLc29yUj6oOzmKWWXg8pGP5qTnajQNidg,1597
29
- ansys/api/systemcoupling/v0/variant.proto,sha256=MwvRIBpMrcvQDPPFyiCpIx-RBJwTokBdOp1Z9V_QAo4,976
29
+ ansys/api/systemcoupling/v0/variant.proto,sha256=4nGTCMGXwS_-W1VIU_cg3wJgu1_Hfyq52cp4Rtmw0co,925
30
30
  ansys/api/systemcoupling/v0/variant_pb2.py,sha256=f-6AkDzpuya9Wvq62L4ZN_hF499ZSr3X0Qph-73Wro4,6306
31
31
  ansys/api/systemcoupling/v0/variant_pb2.pyi,sha256=D2iHLSHYrd2AhcA42TPYuIoKazBB6bdQO9ODgekhtAs,8093
32
32
  ansys/api/systemcoupling/v0/variant_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
33
33
  ansys/api/systemcoupling/v0/variant_pb2_grpc.pyi,sha256=ff2TSiLVnG6IVQcTGzb2DIH3XRSoAvAo_RMcvbMFyc0,76
34
- ansys_api_systemcoupling-0.1.0.dist-info/LICENSE,sha256=SWNp73c2uZDNu0MQ95Ytb8ewSgkqFm0Be0Ga57hixv4,1110
35
- ansys_api_systemcoupling-0.1.0.dist-info/METADATA,sha256=rBNfGc3ezqzUWEPGDQeov8nvqxeM8d2dhyl-CDmnxyQ,1979
36
- ansys_api_systemcoupling-0.1.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
37
- ansys_api_systemcoupling-0.1.0.dist-info/entry_points.txt,sha256=_GF78i8qp_7OsI5n1jIDwQkIwfq-eg9SfWbdf06iZ1o,101
38
- ansys_api_systemcoupling-0.1.0.dist-info/top_level.txt,sha256=9rw0UJ0mtof2GA3U8RpqYo6EmbpfE8-wo3NoX6SlYtg,6
39
- ansys_api_systemcoupling-0.1.0.dist-info/RECORD,,
34
+ ansys_api_systemcoupling-0.2.0.dist-info/LICENSE,sha256=q2LY-0-hseAc1SDA7rBn96IDi2SHenCzygJda8-7AAU,1089
35
+ ansys_api_systemcoupling-0.2.0.dist-info/METADATA,sha256=6LJQ2Wqgd2fonxRvDqH2mwXZoD3LfUBsoxoHgUHqUO8,1900
36
+ ansys_api_systemcoupling-0.2.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
37
+ ansys_api_systemcoupling-0.2.0.dist-info/entry_points.txt,sha256=_GF78i8qp_7OsI5n1jIDwQkIwfq-eg9SfWbdf06iZ1o,101
38
+ ansys_api_systemcoupling-0.2.0.dist-info/top_level.txt,sha256=9rw0UJ0mtof2GA3U8RpqYo6EmbpfE8-wo3NoX6SlYtg,6
39
+ ansys_api_systemcoupling-0.2.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.38.4)
2
+ Generator: bdist_wheel (0.42.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5