fugacio 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,32 @@
1
+ # Byte-compiled / build artifacts
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.egg-info/
5
+ .eggs/
6
+ build/
7
+ dist/
8
+
9
+ # Virtual environments
10
+ .venv/
11
+ venv/
12
+
13
+ # Tooling caches
14
+ .pytest_cache/
15
+ .mypy_cache/
16
+ .ruff_cache/
17
+ .import_linter_cache/
18
+ .jax_cache/
19
+ .coverage
20
+ coverage.xml
21
+ htmlcov/
22
+
23
+ # Docs build
24
+ site/
25
+ # Material social-cards plugin cache (downloaded fonts + generated card layers)
26
+ .cache/
27
+
28
+ # OS / editor
29
+ .DS_Store
30
+ *.swp
31
+ .idea/
32
+ .vscode/
fugacio-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,33 @@
1
+ Metadata-Version: 2.4
2
+ Name: fugacio
3
+ Version: 0.0.1
4
+ Summary: Fugacio: differentiable thermodynamics, process simulation, and an AI design copilot (umbrella install).
5
+ Author-email: Owen Carey <37121709+owenthcarey@users.noreply.github.com>
6
+ License-Expression: Apache-2.0
7
+ Keywords: chemical-engineering,jax,process-simulation,thermodynamics
8
+ Classifier: Development Status :: 2 - Pre-Alpha
9
+ Classifier: Intended Audience :: Science/Research
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Topic :: Scientific/Engineering :: Chemistry
12
+ Requires-Python: >=3.11
13
+ Requires-Dist: fugacio-copilot
14
+ Requires-Dist: fugacio-sim
15
+ Requires-Dist: fugacio-thermo
16
+ Description-Content-Type: text/markdown
17
+
18
+ # fugacio
19
+
20
+ Umbrella package for the Fugacio stack. Installing it pulls the three
21
+ components together:
22
+
23
+ - `fugacio-thermo`: differentiable thermodynamics and physical properties
24
+ - `fugacio-sim`: differentiable steady-state and dynamic process simulation
25
+ - `fugacio-copilot`: an AI design copilot for the stack
26
+
27
+ ```bash
28
+ pip install fugacio
29
+ ```
30
+
31
+ It ships no code of its own. Everything is importable from the `fugacio`
32
+ namespace provided by the component packages, for example `fugacio.thermo`,
33
+ `fugacio.sim`, and `fugacio.copilot`.
@@ -0,0 +1,16 @@
1
+ # fugacio
2
+
3
+ Umbrella package for the Fugacio stack. Installing it pulls the three
4
+ components together:
5
+
6
+ - `fugacio-thermo`: differentiable thermodynamics and physical properties
7
+ - `fugacio-sim`: differentiable steady-state and dynamic process simulation
8
+ - `fugacio-copilot`: an AI design copilot for the stack
9
+
10
+ ```bash
11
+ pip install fugacio
12
+ ```
13
+
14
+ It ships no code of its own. Everything is importable from the `fugacio`
15
+ namespace provided by the component packages, for example `fugacio.thermo`,
16
+ `fugacio.sim`, and `fugacio.copilot`.
@@ -0,0 +1,48 @@
1
+ [project]
2
+ name = "fugacio"
3
+ version = "0.0.1"
4
+ description = "Fugacio: differentiable thermodynamics, process simulation, and an AI design copilot (umbrella install)."
5
+ readme = "README.md"
6
+ requires-python = ">=3.11"
7
+ license = "Apache-2.0"
8
+ authors = [
9
+ { name = "Owen Carey", email = "37121709+owenthcarey@users.noreply.github.com" },
10
+ ]
11
+ keywords = [
12
+ "thermodynamics",
13
+ "process-simulation",
14
+ "chemical-engineering",
15
+ "jax",
16
+ ]
17
+ classifiers = [
18
+ "Development Status :: 2 - Pre-Alpha",
19
+ "Intended Audience :: Science/Research",
20
+ "Programming Language :: Python :: 3",
21
+ "Topic :: Scientific/Engineering :: Chemistry",
22
+ ]
23
+ # Umbrella meta-package: it ships no code of its own, it just pulls in the three
24
+ # Fugacio distributions so `pip install fugacio` installs the whole stack. The
25
+ # release pipeline pins these to the shared lockstep version (scripts/
26
+ # pin_workspace_deps.py); they stay unpinned until the first release, matching
27
+ # the other packages' committed state.
28
+ dependencies = [
29
+ "fugacio-thermo",
30
+ "fugacio-sim",
31
+ "fugacio-copilot",
32
+ ]
33
+
34
+ [build-system]
35
+ requires = ["hatchling"]
36
+ build-backend = "hatchling.build"
37
+
38
+ # Dependencies-only package: there are no modules to ship, so tell hatchling to
39
+ # build an empty wheel instead of erroring on an empty file selection. The
40
+ # `fugacio` import namespace is provided by fugacio-thermo/-sim/-copilot, so the
41
+ # umbrella must not ship a competing `fugacio/` package of its own.
42
+ [tool.hatch.build.targets.wheel]
43
+ bypass-selection = true
44
+
45
+ [tool.uv.sources]
46
+ fugacio-thermo = { workspace = true }
47
+ fugacio-sim = { workspace = true }
48
+ fugacio-copilot = { workspace = true }