FERS 0.1.1__tar.gz
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.
- FERS-0.1.1/FERS.egg-info/PKG-INFO +33 -0
- FERS-0.1.1/FERS.egg-info/SOURCES.txt +13 -0
- FERS-0.1.1/FERS.egg-info/dependency_links.txt +1 -0
- FERS-0.1.1/FERS.egg-info/not-zip-safe +1 -0
- FERS-0.1.1/FERS.egg-info/top_level.txt +1 -0
- FERS-0.1.1/LICENSE +12 -0
- FERS-0.1.1/PKG-INFO +33 -0
- FERS-0.1.1/README.md +18 -0
- FERS-0.1.1/setup.cfg +4 -0
- FERS-0.1.1/setup.py +30 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: FERS
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Finite Element Method library written in Rust with Python interface
|
|
5
|
+
Home-page: https://github.com/jeroen124/fers_core
|
|
6
|
+
Author: Jeroen Hermsen
|
|
7
|
+
Author-email: j.hermsen@serrac.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Rust
|
|
10
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
License-File: LICENSE
|
|
15
|
+
|
|
16
|
+
# FERS_core
|
|
17
|
+
|
|
18
|
+
**FERS_core** is an open-source Finite Element Method (FEM) library written in Rust with a Python interface. It provides the foundational tools and components necessary for performing FEM analysis. This core package is designed for users who need a reliable and efficient FEM solver, while advanced features and optimizations are available in the [FERS_pro](#fers_pro) package.
|
|
19
|
+
|
|
20
|
+
## Features
|
|
21
|
+
|
|
22
|
+
- Basic Finite Element Method (FEM) solvers
|
|
23
|
+
- Mesh generation and manipulation tools
|
|
24
|
+
- Support for various types of finite elements
|
|
25
|
+
- Easy-to-use Python interface for integration with existing workflows
|
|
26
|
+
- Designed for high performance with Rust
|
|
27
|
+
|
|
28
|
+
## Installation
|
|
29
|
+
|
|
30
|
+
You can install `FERS_core` via pip:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
pip install FERS
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
setup.py
|
|
4
|
+
FERS.egg-info/PKG-INFO
|
|
5
|
+
FERS.egg-info/SOURCES.txt
|
|
6
|
+
FERS.egg-info/dependency_links.txt
|
|
7
|
+
FERS.egg-info/not-zip-safe
|
|
8
|
+
FERS.egg-info/top_level.txt
|
|
9
|
+
fers.egg-info/PKG-INFO
|
|
10
|
+
fers.egg-info/SOURCES.txt
|
|
11
|
+
fers.egg-info/dependency_links.txt
|
|
12
|
+
fers.egg-info/not-zip-safe
|
|
13
|
+
fers.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
FERS-0.1.1/LICENSE
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024, Jeroen Hermsen
|
|
4
|
+
All rights reserved.
|
|
5
|
+
|
|
6
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
7
|
+
|
|
8
|
+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
9
|
+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
10
|
+
3. Neither the name of the Jeroen Hermsen nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
|
11
|
+
|
|
12
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
FERS-0.1.1/PKG-INFO
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: FERS
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Finite Element Method library written in Rust with Python interface
|
|
5
|
+
Home-page: https://github.com/jeroen124/fers_core
|
|
6
|
+
Author: Jeroen Hermsen
|
|
7
|
+
Author-email: j.hermsen@serrac.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Rust
|
|
10
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
License-File: LICENSE
|
|
15
|
+
|
|
16
|
+
# FERS_core
|
|
17
|
+
|
|
18
|
+
**FERS_core** is an open-source Finite Element Method (FEM) library written in Rust with a Python interface. It provides the foundational tools and components necessary for performing FEM analysis. This core package is designed for users who need a reliable and efficient FEM solver, while advanced features and optimizations are available in the [FERS_pro](#fers_pro) package.
|
|
19
|
+
|
|
20
|
+
## Features
|
|
21
|
+
|
|
22
|
+
- Basic Finite Element Method (FEM) solvers
|
|
23
|
+
- Mesh generation and manipulation tools
|
|
24
|
+
- Support for various types of finite elements
|
|
25
|
+
- Easy-to-use Python interface for integration with existing workflows
|
|
26
|
+
- Designed for high performance with Rust
|
|
27
|
+
|
|
28
|
+
## Installation
|
|
29
|
+
|
|
30
|
+
You can install `FERS_core` via pip:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
pip install FERS
|
FERS-0.1.1/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# FERS_core
|
|
2
|
+
|
|
3
|
+
**FERS_core** is an open-source Finite Element Method (FEM) library written in Rust with a Python interface. It provides the foundational tools and components necessary for performing FEM analysis. This core package is designed for users who need a reliable and efficient FEM solver, while advanced features and optimizations are available in the [FERS_pro](#fers_pro) package.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- Basic Finite Element Method (FEM) solvers
|
|
8
|
+
- Mesh generation and manipulation tools
|
|
9
|
+
- Support for various types of finite elements
|
|
10
|
+
- Easy-to-use Python interface for integration with existing workflows
|
|
11
|
+
- Designed for high performance with Rust
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
You can install `FERS_core` via pip:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pip install FERS
|
FERS-0.1.1/setup.cfg
ADDED
FERS-0.1.1/setup.py
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
# from setuptools_rust import RustExtension
|
|
3
|
+
|
|
4
|
+
with open("README.md", "r", encoding="utf-8") as fh:
|
|
5
|
+
long_description = fh.read()
|
|
6
|
+
|
|
7
|
+
setup(
|
|
8
|
+
name="FERS",
|
|
9
|
+
version="0.1.1",
|
|
10
|
+
author="Jeroen Hermsen",
|
|
11
|
+
author_email="j.hermsen@serrac.com",
|
|
12
|
+
description="Finite Element Method library written in Rust with Python interface",
|
|
13
|
+
long_description=long_description,
|
|
14
|
+
long_description_content_type="text/markdown",
|
|
15
|
+
url="https://github.com/jeroen124/fers_core",
|
|
16
|
+
packages=find_packages(where="fers_core"),
|
|
17
|
+
# rust_extensions=[RustExtension("fers_core.fers_core", binding="pyo3")],
|
|
18
|
+
include_package_data=True,
|
|
19
|
+
zip_safe=False,
|
|
20
|
+
classifiers=[
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Programming Language :: Rust",
|
|
23
|
+
"License :: OSI Approved :: BSD License",
|
|
24
|
+
"Operating System :: OS Independent",
|
|
25
|
+
],
|
|
26
|
+
python_requires=">=3.8",
|
|
27
|
+
install_requires=[
|
|
28
|
+
# List any Python dependencies your package has
|
|
29
|
+
],
|
|
30
|
+
)
|