femforge 0.0.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.
@@ -0,0 +1,18 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ push:
5
+ tags: ["v*"]
6
+
7
+ jobs:
8
+ publish:
9
+ runs-on: ubuntu-latest
10
+ environment: pypi
11
+ permissions:
12
+ id-token: write
13
+ contents: read
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - uses: astral-sh/setup-uv@v6
17
+ - run: uv build
18
+ - uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,9 @@
1
+ __pycache__/
2
+ *.py[cod]
3
+ .venv/
4
+ dist/
5
+ build/
6
+ *.egg-info/
7
+ .pytest_cache/
8
+ .ruff_cache/
9
+ uv.lock
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.5
2
+ Name: femforge
3
+ Version: 0.0.1
4
+ Summary: Typed, provenance-tracked FEA orchestration (CAD -> mesh -> solver -> result) for electromagnetic and thermal design. Placeholder release reserving the name; the first real release is in preparation.
5
+ Project-URL: Homepage, https://femforge.io
6
+ Project-URL: Repository, https://github.com/femforge-io/femforge
7
+ Author: Nathan Woodward
8
+ Keywords: electromagnetics,elmer,fea,finite-element,gmsh,simulation,thermal
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Intended Audience :: Science/Research
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3 :: Only
13
+ Classifier: Topic :: Scientific/Engineering
14
+ Classifier: Topic :: Scientific/Engineering :: Physics
15
+ Requires-Python: >=3.12
16
+ Description-Content-Type: text/markdown
17
+
18
+ # femforge
19
+
20
+ Typed, provenance-tracked FEA orchestration for electromagnetic and thermal design: CAD → mesh → solver → result, with every run a tracked artifact.
21
+
22
+ **This is a placeholder release that reserves the package name.** It installs nothing usable yet. The first real release is in preparation; follow [femforge.io](https://femforge.io) and this repository for the announcement.
@@ -0,0 +1,5 @@
1
+ # femforge
2
+
3
+ Typed, provenance-tracked FEA orchestration for electromagnetic and thermal design: CAD → mesh → solver → result, with every run a tracked artifact.
4
+
5
+ **This is a placeholder release that reserves the package name.** It installs nothing usable yet. The first real release is in preparation; follow [femforge.io](https://femforge.io) and this repository for the announcement.
@@ -0,0 +1,28 @@
1
+ [project]
2
+ name = "femforge"
3
+ version = "0.0.1"
4
+ description = "Typed, provenance-tracked FEA orchestration (CAD -> mesh -> solver -> result) for electromagnetic and thermal design. Placeholder release reserving the name; the first real release is in preparation."
5
+ readme = "README.md"
6
+ requires-python = ">=3.12"
7
+ authors = [{ name = "Nathan Woodward" }]
8
+ keywords = ["fea", "finite-element", "elmer", "gmsh", "electromagnetics", "thermal", "simulation"]
9
+ classifiers = [
10
+ "Development Status :: 1 - Planning",
11
+ "Intended Audience :: Science/Research",
12
+ "Programming Language :: Python :: 3",
13
+ "Programming Language :: Python :: 3 :: Only",
14
+ "Topic :: Scientific/Engineering",
15
+ "Topic :: Scientific/Engineering :: Physics",
16
+ ]
17
+ dependencies = []
18
+
19
+ [project.urls]
20
+ Homepage = "https://femforge.io"
21
+ Repository = "https://github.com/femforge-io/femforge"
22
+
23
+ [build-system]
24
+ requires = ["hatchling"]
25
+ build-backend = "hatchling.build"
26
+
27
+ [tool.hatch.build.targets.wheel]
28
+ packages = ["src/femforge"]
@@ -0,0 +1,3 @@
1
+ """femforge: typed, provenance-tracked FEA orchestration. This release only reserves the name; see https://femforge.io."""
2
+
3
+ __version__ = "0.0.1"