cfd-ops 0.1.0__py3-none-any.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.
cfd_ops/__init__.py
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cfd-ops
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Operations for transforming, extracting, remapping, and combining CFD datasets built on the cfd-io data model
|
|
5
|
+
Author-email: Christoph Hader <chader@arizona.edu>
|
|
6
|
+
License: BSD-3-Clause
|
|
7
|
+
Project-URL: Homepage, https://github.com/uahypersonics/cfd-ops
|
|
8
|
+
Project-URL: Repository, https://github.com/uahypersonics/cfd-ops
|
|
9
|
+
Keywords: cfd,operations,transform,extract,remap,dataset
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
18
|
+
Requires-Python: >=3.11
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
License-File: LICENSE
|
|
21
|
+
Requires-Dist: numpy>=1.24.0
|
|
22
|
+
Requires-Dist: cfd-io>=0.2.0
|
|
23
|
+
Provides-Extra: dev
|
|
24
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
25
|
+
Requires-Dist: pytest-cov>=4.0; extra == "dev"
|
|
26
|
+
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
27
|
+
Provides-Extra: docs
|
|
28
|
+
Requires-Dist: mkdocs<2,>=1.5; extra == "docs"
|
|
29
|
+
Requires-Dist: mkdocs-material>=9.0; extra == "docs"
|
|
30
|
+
Requires-Dist: mkdocstrings[python]>=0.24; extra == "docs"
|
|
31
|
+
Dynamic: license-file
|
|
32
|
+
|
|
33
|
+
# cfd-ops
|
|
34
|
+
|
|
35
|
+
Operations for transforming, extracting, remapping, and combining CFD datasets
|
|
36
|
+
built on the [cfd-io](https://github.com/uahypersonics/cfd-io) data model.
|
|
37
|
+
|
|
38
|
+
[](https://github.com/uahypersonics/cfd-ops/actions/workflows/test.yml)
|
|
39
|
+
[](https://pypi.org/project/cfd-ops/)
|
|
40
|
+
[](https://uahypersonics.github.io/cfd-ops/)
|
|
41
|
+
[](LICENSE)
|
|
42
|
+
[](https://www.python.org/downloads/)
|
|
43
|
+
[](https://github.com/astral-sh/ruff)
|
|
44
|
+
|
|
45
|
+
## Install
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
pip install cfd-ops
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## Documentation
|
|
52
|
+
|
|
53
|
+
Full documentation: https://uahypersonics.github.io/cfd-ops
|
|
54
|
+
|
|
55
|
+
## Citation
|
|
56
|
+
|
|
57
|
+
If `cfd-ops` contributes to published work, please cite via the `CITATION.cff` in this repository.
|
|
58
|
+
|
|
59
|
+
## Code Style
|
|
60
|
+
|
|
61
|
+
This project follows established Python community conventions so that
|
|
62
|
+
contributors can focus on the physics rather than inventing formatting rules.
|
|
63
|
+
|
|
64
|
+
| Convention | What it covers | Reference |
|
|
65
|
+
|---|---|---|
|
|
66
|
+
| [PEP 8](https://peps.python.org/pep-0008/) | Code formatting, naming, whitespace | Python standard style guide |
|
|
67
|
+
| [PEP 257](https://peps.python.org/pep-0257/) | Docstring structure (triple-quoted, imperative mood) | Python standard docstring conventions |
|
|
68
|
+
| [Google style](https://google.github.io/styleguide/pyguide.html#38-comments-and-docstrings) | Docstring sections (`Args`, `Returns`, `Raises`) | Google Python style guide |
|
|
69
|
+
| [Ruff](https://docs.astral.sh/ruff/) | Automated linting and formatting | Enforces PEP 8 compliance automatically |
|
|
70
|
+
| [typing / TYPE_CHECKING](https://docs.python.org/3/library/typing.html#typing.TYPE_CHECKING) | Type hints for IDE support and static analysis | Python standard library |
|
|
71
|
+
|
|
72
|
+
## Versioning & Releasing
|
|
73
|
+
|
|
74
|
+
This project uses [Semantic Versioning](https://semver.org/) (`vMAJOR.MINOR.PATCH`):
|
|
75
|
+
|
|
76
|
+
- **MAJOR** (`v1.0.0`, `v2.0.0`): Breaking API changes
|
|
77
|
+
- **MINOR** (`v0.3.0`, `v0.4.0`): New features, backward-compatible
|
|
78
|
+
- **PATCH** (`v0.3.1`, `v0.3.2`): Bug fixes, minor corrections
|
|
79
|
+
|
|
80
|
+
To publish a new version to [PyPI](https://pypi.org/project/cfd-ops/):
|
|
81
|
+
|
|
82
|
+
1. Commit and push to `main`
|
|
83
|
+
2. Tag and push:
|
|
84
|
+
```bash
|
|
85
|
+
git tag -a vMAJOR.MINOR.PATCH -m "Release vMAJOR.MINOR.PATCH"
|
|
86
|
+
git push origin vMAJOR.MINOR.PATCH
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
Use a signed tag when your GPG/SSH signing is configured:
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
git tag -s vMAJOR.MINOR.PATCH -m "Release vMAJOR.MINOR.PATCH"
|
|
93
|
+
git push origin vMAJOR.MINOR.PATCH
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
The GitHub Actions workflow will automatically build and publish to PyPI via Trusted Publishing.
|
|
97
|
+
|
|
98
|
+
## License
|
|
99
|
+
|
|
100
|
+
BSD-3-Clause. See [LICENSE](LICENSE) for details.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
cfd_ops/__init__.py,sha256=zqNQU6ukdRqunzhe-7CrNJJRDELlPrBJWZtpPlv1P6Q,169
|
|
2
|
+
cfd_ops-0.1.0.dist-info/licenses/LICENSE,sha256=3UbyOgPeUUDwRiy_Xw1601ZvsOp6tRb38obYvKl4xuw,1500
|
|
3
|
+
cfd_ops-0.1.0.dist-info/METADATA,sha256=N_MM_MLM32hHscXVWq-KhRryksgkoygueERvl1uinzk,4233
|
|
4
|
+
cfd_ops-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
5
|
+
cfd_ops-0.1.0.dist-info/top_level.txt,sha256=xeFG1_Tkxt71gusHM4mtVkro0h6Cm12wJBVtobyZ5ss,8
|
|
6
|
+
cfd_ops-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026, uahypersonics
|
|
4
|
+
|
|
5
|
+
Redistribution and use in source and binary forms, with or without
|
|
6
|
+
modification, are permitted provided that the following conditions are met:
|
|
7
|
+
|
|
8
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
list of conditions and the following disclaimer.
|
|
10
|
+
|
|
11
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
12
|
+
this list of conditions and the following disclaimer in the documentation
|
|
13
|
+
and/or other materials provided with the distribution.
|
|
14
|
+
|
|
15
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
16
|
+
contributors may be used to endorse or promote products derived from
|
|
17
|
+
this software without specific prior written permission.
|
|
18
|
+
|
|
19
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
20
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
21
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
22
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
23
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
24
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
25
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
26
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
27
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
cfd_ops
|