Skip to content

Commit 4e9afe0

Browse files
authored
feat: add PyACP (#534)
1 parent edb8c82 commit 4e9afe0

File tree

8 files changed

+31
-0
lines changed

8 files changed

+31
-0
lines changed

.github/workflows/create-milestone.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
pyansys-projects:
2121
[
2222
"ansys/openapi-common",
23+
"ansys/pyacp",
2324
"ansys/pyadditive",
2425
"ansys/pyaedt",
2526
"ansys/pyansys-geometry",

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ of these packages amongst themselves and the Ansys product release that they are
4444

4545
The ``pyansys`` metapackage ensures compatibility between these PyAnsys packages:
4646

47+
- `PyACP <https://acp.docs.pyansys.com/>`_: Pythonic interface to Ansys Composite PrepPost (ACP).
4748
- `PyAdditive <https://additive.docs.pyansys.com/>`_: Pythonic interface to the Ansys Additive service.
4849
- `PyAEDT <https://aedt.docs.pyansys.com/>`_: Pythonic interface to AEDT (Ansys Electronics Desktop).
4950
- `PyAnsys Geometry <https://geometry.docs.pyansys.com/>`_: Pythonic interface to the Ansys Geometry service.
@@ -93,6 +94,7 @@ free to post a question on the `Ansys Developer Forums <https://discuss.ansys.co
9394

9495
By default, the PyAnsys metapackage installs these core modules:
9596

97+
- `PyACP`_
9698
- `PyAdditive`_
9799
- `PyAEDT`_
98100
- `PyAnsys Geometry`_

doc/source/api.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ PyAnsys packages API reference
2121
.. grid:: 3
2222
:gutter: 3 3 4 4
2323

24+
.. grid-item-card:: PyACP
25+
:img-top: _static/thumbnails/intro.png
26+
:link: https://acp.docs.pyansys.com/version/dev/api/index.html
27+
:text-align: center
28+
:class-title: pyansys-card-title
29+
2430
.. grid-item-card:: PyAdditive
2531
:img-top: _static/thumbnails/intro.png
2632
:link: https://additive.docs.pyansys.com/version/stable/api/index.html

doc/source/examples.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ PyAnsys packages examples
1010
.. grid:: 3
1111
:gutter: 3 3 4 4
1212

13+
.. grid-item-card:: PyACP
14+
:img-top: _static/thumbnails/intro.png
15+
:link: https://acp.docs.pyansys.com/version/dev/examples/index.html
16+
:text-align: center
17+
:class-title: pyansys-card-title
18+
1319
.. grid-item-card:: PyAdditive
1420
:img-top: _static/thumbnails/intro.png
1521
:link: https://additive.docs.pyansys.com/version/stable/examples/gallery_examples/index.html

doc/source/index.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ it is now a collection of many Python packages for using Ansys products through
1818
.. grid:: 3
1919
:gutter: 3 3 4 4
2020

21+
.. grid-item-card:: PyACP
22+
:img-top: _static/thumbnails/intro.png
23+
:link: https://acp.docs.pyansys.com/version/dev
24+
:text-align: center
25+
:class-title: pyansys-card-title
26+
27+
Pythonic interface to Ansys Composite PrepPost (ACP)
28+
2129
.. grid-item-card:: PyAdditive
2230
:img-top: _static/thumbnails/intro.png
2331
:link: https://additive.docs.pyansys.com/version/stable

doc/source/user_guide.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ PyAnsys packages user guides
1313
.. grid:: 3
1414
:gutter: 3 3 4 4
1515

16+
.. grid-item-card:: PyACP
17+
:img-top: _static/thumbnails/intro.png
18+
:link: https://acp.docs.pyansys.com/version/dev/user_guide/index.html
19+
:text-align: center
20+
:class-title: pyansys-card-title
21+
1622
.. grid-item-card:: PyAdditive
1723
:img-top: _static/thumbnails/intro.png
1824
:link: https://additive.docs.pyansys.com/version/stable/getting_started/index.html

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ classifiers = [
2727
]
2828

2929
dependencies = [
30+
"ansys-acp-core==0.1b1",
3031
"ansys-additive-core==0.17.2",
3132
"ansys-dpf-composites==0.4.0",
3233
"ansys-dpf-core==0.11.0",

tools/links.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"""Path to the documentation source directory"""
2222

2323
LINKS = {
24+
"ansys-acp-core": None, # Once stable release is out "https://acp.docs.pyansys.com/version/stable", # noqa: E501
2425
"ansys-additive-core": "https://additive.docs.pyansys.com/version/stable",
2526
"ansys-dpf-composites": "https://composites.dpf.docs.pyansys.com/version/stable", # noqa: E501
2627
"ansys-dpf-core": "https://dpf.docs.pyansys.com/version/stable",

0 commit comments

Comments
 (0)