ansys-api-systemcoupling 0.1.0__py3-none-any.whl → 0.3.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.
- ansys/api/systemcoupling/VERSION +1 -1
- ansys/api/systemcoupling/__init__.py +8 -8
- ansys/api/systemcoupling/v0/chart.proto +159 -0
- ansys/api/systemcoupling/v0/chart_pb2.py +166 -0
- ansys/api/systemcoupling/v0/chart_pb2.pyi +309 -0
- ansys/api/systemcoupling/v0/chart_pb2_grpc.py +181 -0
- ansys/api/systemcoupling/v0/chart_pb2_grpc.pyi +89 -0
- ansys/api/systemcoupling/v0/command.proto +23 -23
- ansys/api/systemcoupling/v0/error.proto +8 -8
- ansys/api/systemcoupling/v0/output_stream.proto +15 -15
- ansys/api/systemcoupling/v0/process.proto +15 -15
- ansys/api/systemcoupling/v0/solution.proto +30 -30
- ansys/api/systemcoupling/v0/variant.proto +51 -51
- {ansys_api_systemcoupling-0.1.0.dist-info → ansys_api_systemcoupling-0.3.0.dist-info}/LICENSE +21 -21
- {ansys_api_systemcoupling-0.1.0.dist-info → ansys_api_systemcoupling-0.3.0.dist-info}/METADATA +74 -74
- {ansys_api_systemcoupling-0.1.0.dist-info → ansys_api_systemcoupling-0.3.0.dist-info}/RECORD +19 -14
- {ansys_api_systemcoupling-0.1.0.dist-info → ansys_api_systemcoupling-0.3.0.dist-info}/WHEEL +1 -1
- {ansys_api_systemcoupling-0.1.0.dist-info → ansys_api_systemcoupling-0.3.0.dist-info}/entry_points.txt +0 -0
- {ansys_api_systemcoupling-0.1.0.dist-info → ansys_api_systemcoupling-0.3.0.dist-info}/top_level.txt +0 -0
{ansys_api_systemcoupling-0.1.0.dist-info → ansys_api_systemcoupling-0.3.0.dist-info}/METADATA
RENAMED
|
@@ -1,74 +1,74 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: ansys-api-systemcoupling
|
|
3
|
-
Version: 0.
|
|
4
|
-
Summary: Autogenerated python gRPC interface package for ansys-api-systemcoupling, built on
|
|
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
|
|
13
|
-
Requires-Dist: protobuf
|
|
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.3.0
|
|
4
|
+
Summary: Autogenerated python gRPC interface package for ansys-api-systemcoupling, built on 09:18:40 on 06 February 2026
|
|
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
|
+
```
|
{ansys_api_systemcoupling-0.1.0.dist-info → ansys_api_systemcoupling-0.3.0.dist-info}/RECORD
RENAMED
|
@@ -1,39 +1,44 @@
|
|
|
1
|
-
ansys/api/systemcoupling/VERSION,sha256=
|
|
2
|
-
ansys/api/systemcoupling/__init__.py,sha256=
|
|
1
|
+
ansys/api/systemcoupling/VERSION,sha256=VQYTU3_EiPOzcq90pAAYefASyEZbgW8bhcbTRGss-0k,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/
|
|
4
|
+
ansys/api/systemcoupling/v0/chart.proto,sha256=40LnzSrdWFVIQXBMIBgpCiAsgiVZ_KOLJm7o3UL8c5Q,6317
|
|
5
|
+
ansys/api/systemcoupling/v0/chart_pb2.py,sha256=GxZ5XuDgXq-R1VcKMRhRZMOLKsNHkFKYh9q5NYBX4wc,10118
|
|
6
|
+
ansys/api/systemcoupling/v0/chart_pb2.pyi,sha256=IEUDJB1_3PxA6VV4hQMzBzuNV-R-lyhI3oEbrxI-Vbg,14547
|
|
7
|
+
ansys/api/systemcoupling/v0/chart_pb2_grpc.py,sha256=kyYTnG22HYkqRznedMUPhTAQfL7HFrP8yjhQfdslWpI,9064
|
|
8
|
+
ansys/api/systemcoupling/v0/chart_pb2_grpc.pyi,sha256=CGf106-lWnx1ENuvbWpJVMETrHx-f3r1FKLG1pPnoZQ,3670
|
|
9
|
+
ansys/api/systemcoupling/v0/command.proto,sha256=CjFLYU9gQ6i6lmm3VfwqsrxQNdkuJ8NQ_zEtmF4EHAw,452
|
|
5
10
|
ansys/api/systemcoupling/v0/command_pb2.py,sha256=7Ww-D9SXJyepkSdvKoaTB8Bm8VP77wfdL1wTA_-wGrQ,3112
|
|
6
11
|
ansys/api/systemcoupling/v0/command_pb2.pyi,sha256=Vo6CUilCkHZN-T73l4H4lbsDl62PY5wbGx_UD0R06IQ,2420
|
|
7
12
|
ansys/api/systemcoupling/v0/command_pb2_grpc.py,sha256=avLCiTV2m0FOuO5yoc08-qF1nGM-6G5G8KsyV5Enkzg,2822
|
|
8
13
|
ansys/api/systemcoupling/v0/command_pb2_grpc.pyi,sha256=xxuG_jQZoVUHaAWMpU2W9Xo-U9QSmxodcCU9qgFM6sE,788
|
|
9
|
-
ansys/api/systemcoupling/v0/error.proto,sha256=
|
|
14
|
+
ansys/api/systemcoupling/v0/error.proto,sha256=_x1-9BbeIiYy0baozaEpeI6BnB83R5IYNoDYy_InQE4,199
|
|
10
15
|
ansys/api/systemcoupling/v0/error_pb2.py,sha256=uim_MDfabz4UrWOLvXftVylXU-MooyTJ_yF3JNX6PM4,1372
|
|
11
16
|
ansys/api/systemcoupling/v0/error_pb2.pyi,sha256=ooWFgvYy6QTvptSIu5RSiG84rNnEh3OTcxp_dJ-_dvU,879
|
|
12
17
|
ansys/api/systemcoupling/v0/error_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
13
18
|
ansys/api/systemcoupling/v0/error_pb2_grpc.pyi,sha256=ff2TSiLVnG6IVQcTGzb2DIH3XRSoAvAo_RMcvbMFyc0,76
|
|
14
|
-
ansys/api/systemcoupling/v0/output_stream.proto,sha256=
|
|
19
|
+
ansys/api/systemcoupling/v0/output_stream.proto,sha256=Hx_JQEpAbui83Y1qF6rva8hjEgsjBytbH6cUtQ1L1Nc,300
|
|
15
20
|
ansys/api/systemcoupling/v0/output_stream_pb2.py,sha256=m_SQafBYNmvVrD_ZNU4ta41wemeiQdWZJUw_Bmya6g0,2217
|
|
16
21
|
ansys/api/systemcoupling/v0/output_stream_pb2.pyi,sha256=8ELqb9MKLrUse-Ih36yJW1Vg7EmALvvEX4Hon-Loaaw,880
|
|
17
22
|
ansys/api/systemcoupling/v0/output_stream_pb2_grpc.py,sha256=o_35WUECubK-KEBJsC4urEebmxMioe5XfZ9DkmoZLps,2955
|
|
18
23
|
ansys/api/systemcoupling/v0/output_stream_pb2_grpc.pyi,sha256=r2w03mm6BxbnBWzZ04Jfqsu3e13qVyVRjmM4VW9X5do,886
|
|
19
|
-
ansys/api/systemcoupling/v0/process.proto,sha256
|
|
24
|
+
ansys/api/systemcoupling/v0/process.proto,sha256=-IN2ThCTWvhdBey_FTwdr2sV4aXSkfAOeJQRlLCjnEM,333
|
|
20
25
|
ansys/api/systemcoupling/v0/process_pb2.py,sha256=u9Nd9saG6RVYjrUmTjaDk9QhkyKKPRiZ3dL8gKjNnUM,3049
|
|
21
26
|
ansys/api/systemcoupling/v0/process_pb2.pyi,sha256=kadtNGYZyZmydeS9HOhei04aWb4ydkSFvjU1tCldmZI,984
|
|
22
27
|
ansys/api/systemcoupling/v0/process_pb2_grpc.py,sha256=-LPm8eQj_gSbgexQybsnmAuEEWPcUioUZTQF879_XjY,4478
|
|
23
28
|
ansys/api/systemcoupling/v0/process_pb2_grpc.pyi,sha256=mFbC50tl0lKDK118uI1xUd8LAj6-9ZlGax9vCCezYrg,1148
|
|
24
|
-
ansys/api/systemcoupling/v0/solution.proto,sha256=
|
|
29
|
+
ansys/api/systemcoupling/v0/solution.proto,sha256=crjdhs_JoULifdzGuXqkGEysY5ViVcscWhBoWiaGS9o,751
|
|
25
30
|
ansys/api/systemcoupling/v0/solution_pb2.py,sha256=pWfLY-0AqoQWgbM3Fpp8udbntgRmBDOn4tU3dX0fnvI,4357
|
|
26
31
|
ansys/api/systemcoupling/v0/solution_pb2.pyi,sha256=vX2z5g1tcOgASWpfMAthNdzzRio9EO998Xpd2IBtSAE,2150
|
|
27
32
|
ansys/api/systemcoupling/v0/solution_pb2_grpc.py,sha256=E8VNoQhfyCFbiJAOMcEvehklEdxFpUd94JWlkQfvrQs,6337
|
|
28
33
|
ansys/api/systemcoupling/v0/solution_pb2_grpc.pyi,sha256=bkwkVg0HUagLc29yUj6oOzmKWWXg8pGP5qTnajQNidg,1597
|
|
29
|
-
ansys/api/systemcoupling/v0/variant.proto,sha256=
|
|
34
|
+
ansys/api/systemcoupling/v0/variant.proto,sha256=4nGTCMGXwS_-W1VIU_cg3wJgu1_Hfyq52cp4Rtmw0co,925
|
|
30
35
|
ansys/api/systemcoupling/v0/variant_pb2.py,sha256=f-6AkDzpuya9Wvq62L4ZN_hF499ZSr3X0Qph-73Wro4,6306
|
|
31
36
|
ansys/api/systemcoupling/v0/variant_pb2.pyi,sha256=D2iHLSHYrd2AhcA42TPYuIoKazBB6bdQO9ODgekhtAs,8093
|
|
32
37
|
ansys/api/systemcoupling/v0/variant_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
33
38
|
ansys/api/systemcoupling/v0/variant_pb2_grpc.pyi,sha256=ff2TSiLVnG6IVQcTGzb2DIH3XRSoAvAo_RMcvbMFyc0,76
|
|
34
|
-
ansys_api_systemcoupling-0.
|
|
35
|
-
ansys_api_systemcoupling-0.
|
|
36
|
-
ansys_api_systemcoupling-0.
|
|
37
|
-
ansys_api_systemcoupling-0.
|
|
38
|
-
ansys_api_systemcoupling-0.
|
|
39
|
-
ansys_api_systemcoupling-0.
|
|
39
|
+
ansys_api_systemcoupling-0.3.0.dist-info/LICENSE,sha256=q2LY-0-hseAc1SDA7rBn96IDi2SHenCzygJda8-7AAU,1089
|
|
40
|
+
ansys_api_systemcoupling-0.3.0.dist-info/METADATA,sha256=QoZ1-t4N6mKx2CeaB5vw3EULavfJlNED1oXxMWSkP1Y,1904
|
|
41
|
+
ansys_api_systemcoupling-0.3.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
42
|
+
ansys_api_systemcoupling-0.3.0.dist-info/entry_points.txt,sha256=_GF78i8qp_7OsI5n1jIDwQkIwfq-eg9SfWbdf06iZ1o,101
|
|
43
|
+
ansys_api_systemcoupling-0.3.0.dist-info/top_level.txt,sha256=9rw0UJ0mtof2GA3U8RpqYo6EmbpfE8-wo3NoX6SlYtg,6
|
|
44
|
+
ansys_api_systemcoupling-0.3.0.dist-info/RECORD,,
|
|
File without changes
|
{ansys_api_systemcoupling-0.1.0.dist-info → ansys_api_systemcoupling-0.3.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|