Skip to content

Commit

Permalink
Merge branch 'main' into release/0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RobPasMue committed Aug 8, 2023
2 parents 0ef69ac + a4dd63b commit d05430e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions ansys/api/geometry/v0/commands.proto
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.

syntax = "proto3";

Expand All @@ -17,10 +17,10 @@ service Commands{

rpc ProjectCurves(ProjectCurvesRequest) returns (ProjectCurvesResponse);

rpc ImprintProjectedCurves(ProjectCurvesRequest) returns (EntitiesCollection);

rpc ImprintCurves(ImprintCurvesRequest) returns (EntitiesCollection);

rpc ImprintProjectedCurves(ProjectCurvesRequest) returns (EntitiesCollection);

rpc PowerSelectFacesByAreaRange(PowerSelectFacesByAreaRangeRequest) returns (PowerSelectFacesByAreaRangeResponse);

rpc CreateBeamCircularProfile(CreateBeamCircularProfileRequest) returns(CreateBeamCircularProfileResponse);
Expand Down Expand Up @@ -222,4 +222,4 @@ message CreateTorusRequest {

message CreateTorusResponse {
string id=1;
}
}
3 changes: 1 addition & 2 deletions ansys/api/geometry/v0/designs.proto
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
syntax = "proto3";
package ansys.api.geometry.v0.Designs;

Expand Down Expand Up @@ -67,7 +67,6 @@ message ExportResponse {
message GetAsJsonRequest {
string id=1;
}

message GetAsJsonResponse {
string json=1;
}
Expand Down
2 changes: 1 addition & 1 deletion ansys/api/geometry/v0/geometryapplication.proto
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
syntax = "proto3";
package ansys.api.geometry.v0.GeometryApplication;
option csharp_namespace = "Ansys.Api.Geometry.V0.GeometryApplication";
Expand Down
3 changes: 2 additions & 1 deletion ansys/api/geometry/v0/models.proto
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
syntax = "proto3";
package ansys.api.geometry.v0;

Expand Down Expand Up @@ -367,6 +367,7 @@ enum PartExportFormat {
PARTEXPORTFORMAT_STEP = 4;
PARTEXPORTFORMAT_FMD = 5;
PARTEXPORTFORMAT_IGES = 6;
PARTEXPORTFORMAT_PMDB = 7;
}

message UpdateState {
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
package_name = "ansys-api-geometry"
dot_package_name = '.'.join(filter(None, package_info))

description = f"Autogenerated python gRPC interface package for {package_name}, built on {datetime.now().strftime('%H:%M:%S on %d %B %Y')}"
description = f"Autogenerated Python gRPC interface package for {package_name}, built on {datetime.now().strftime('%H:%M:%S on %d %B %Y')}"

if __name__ == "__main__":
setuptools.setup(
Expand All @@ -34,7 +34,7 @@
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
url=f"https://github.com/pyansys/{package_name}",
url=f"https://github.com/ansys/{package_name}",
license="MIT",
python_requires=">=3.7",
install_requires=["grpcio~=1.47", "protobuf~=3.19"],
Expand All @@ -49,8 +49,8 @@
},
cmdclass=CMDCLASS_OVERRIDE,
project_urls={
'Documentation': 'https://github.com/pyansys/ansys-api-geometry/#readme',
'Source': 'https://github.com/pyansys/ansys-api-geometry/',
'Tracker': 'https://github.com/pyansys/ansys-api-geometry/issues/',
'Documentation': 'https://github.com/ansys/ansys-api-geometry/#readme',
'Source': 'https://github.com/ansys/ansys-api-geometry/',
'Tracker': 'https://github.com/ansys/ansys-api-geometry/issues/',
},
)

0 comments on commit d05430e

Please sign in to comment.