ViennaPS 3.4.0__cp310-cp310-musllinux_1_1_x86_64.whl → 3.5.1__cp310-cp310-musllinux_1_1_x86_64.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 ViennaPS might be problematic. Click here for more details.
- {viennaps-3.4.0.dist-info → viennaps-3.5.1.dist-info}/METADATA +12 -12
- {viennaps-3.4.0.dist-info → viennaps-3.5.1.dist-info}/RECORD +289 -289
- {viennaps-3.4.0.dist-info → viennaps-3.5.1.dist-info}/WHEEL +1 -1
- viennaps.libs/cmake_install.cmake +1 -1
- viennaps.libs/common/cmake_install.cmake +1 -1
- viennaps.libs/common/lexers/cmake_install.cmake +1 -1
- viennaps.libs/common/math/cmake_install.cmake +1 -1
- viennaps.libs/common/simd/cmake_install.cmake +1 -1
- viennaps.libs/common/sys/cmake_install.cmake +1 -1
- viennaps.libs/common/tasking/cmake_install.cmake +1 -1
- viennaps.libs/kernels/cmake_install.cmake +1 -1
- viennaps.libs/tests/cmake_install.cmake +1 -1
- viennaps2d/__init__.py +15 -2
- viennaps2d/viennaps2d.cpython-310-x86_64-linux-gnu.so +0 -0
- viennaps2d/viennaps2d.pyi +247 -86
- viennaps3d/__init__.py +15 -2
- viennaps3d/viennaps3d/gpu.pyi +62 -11
- viennaps3d/viennaps3d.cpython-310-x86_64-linux-gnu.so +0 -0
- viennaps3d/viennaps3d.pyi +224 -91
- {viennaps-3.4.0.dist-info → viennaps-3.5.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: ViennaPS
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.5.1
|
|
4
4
|
Summary: Semiconductor fabrication process simulation library
|
|
5
5
|
License: Parts of the code (located in the 'external/' subfolder) have different
|
|
6
6
|
licenses. The individual licenses apply for this specific part. Please consult
|
|
@@ -31,7 +31,7 @@ Project-URL: Homepage, https://viennatools.github.io/ViennaPS/
|
|
|
31
31
|
Project-URL: Documentation, https://viennatools.github.io/ViennaPS/
|
|
32
32
|
Project-URL: Repository, https://github.com/ViennaTools/ViennaPS
|
|
33
33
|
Project-URL: Issues, https://github.com/ViennaTools/ViennaPS/issues
|
|
34
|
-
Requires-Dist: ViennaLS>=4.3.
|
|
34
|
+
Requires-Dist: ViennaLS>=4.3.2
|
|
35
35
|
Description-Content-Type: text/markdown
|
|
36
36
|
|
|
37
37
|
<div align="center">
|
|
@@ -86,18 +86,18 @@ ViennaPS is also available on the [Python Package Index (PyPI)](https://pypi.org
|
|
|
86
86
|
|
|
87
87
|
### Dependencies (installed automatically)
|
|
88
88
|
|
|
89
|
-
* [ViennaCore](https://github.com/ViennaTools/viennacore)
|
|
89
|
+
* [ViennaCore](https://github.com/ViennaTools/viennacore) (1.4.3+)
|
|
90
90
|
|
|
91
|
-
* [ViennaLS](https://github.com/ViennaTools/viennals)
|
|
92
|
-
* [ViennaHRLE](https://github.com/ViennaTools/viennahrle)
|
|
93
|
-
* [VTK](https://vtk.org/)
|
|
91
|
+
* [ViennaLS](https://github.com/ViennaTools/viennals) (4.3.2+)
|
|
92
|
+
* [ViennaHRLE](https://github.com/ViennaTools/viennahrle) (0.6.0+)
|
|
93
|
+
* [VTK](https://vtk.org/) (9.0.0+)
|
|
94
94
|
|
|
95
|
-
* [ViennaRay](https://github.com/ViennaTools/viennaray)
|
|
96
|
-
* [Embree](https://www.embree.org/)
|
|
95
|
+
* [ViennaRay](https://github.com/ViennaTools/viennaray) (3.4.1+)
|
|
96
|
+
* [Embree](https://www.embree.org/) (4.0.0+)
|
|
97
97
|
|
|
98
|
-
* [ViennaCS](https://github.com/ViennaTools/viennacs)
|
|
98
|
+
* [ViennaCS](https://github.com/ViennaTools/viennacs) (1.1.0+)
|
|
99
99
|
|
|
100
|
-
* [pybind11](https://github.com/pybind/pybind11)
|
|
100
|
+
* [pybind11](https://github.com/pybind/pybind11) (2.12.0+, only for building Python libs)
|
|
101
101
|
|
|
102
102
|
The CMake configuration automatically checks if the dependencies are installed.
|
|
103
103
|
If the dependencies are not found on the system, they will be built from source. To use local installations of the dependencies, the `VIENNAPS_LOOKUP_DIRS` variable can be set to the installation path of the dependencies.
|
|
@@ -151,7 +151,7 @@ We recommend using [CPM.cmake](https://github.com/cpm-cmake/CPM.cmake) to consum
|
|
|
151
151
|
|
|
152
152
|
* Installation with CPM
|
|
153
153
|
```cmake
|
|
154
|
-
CPMAddPackage("gh:viennatools/viennaps@3.
|
|
154
|
+
CPMAddPackage("gh:viennatools/viennaps@3.5.1")
|
|
155
155
|
```
|
|
156
156
|
|
|
157
157
|
* With a local installation
|
|
@@ -289,4 +289,4 @@ http://www.iue.tuwien.ac.at/
|
|
|
289
289
|
|
|
290
290
|
License
|
|
291
291
|
--------------------------
|
|
292
|
-
See file LICENSE in the base directory.
|
|
292
|
+
See file LICENSE in the base directory.
|