FourCIPP 0.29.0__py3-none-any.whl → 1.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.
fourcipp/version.py CHANGED
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '0.29.0'
32
- __version_tuple__ = version_tuple = (0, 29, 0)
31
+ __version__ = version = '1.1.0'
32
+ __version_tuple__ = version_tuple = (1, 1, 0)
33
33
 
34
34
  __commit_id__ = commit_id = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: FourCIPP
3
- Version: 0.29.0
3
+ Version: 1.1.0
4
4
  Summary: A streamlined Python Parser for 4C input files
5
5
  Author: FourCIPP Authors
6
6
  License: The MIT License (MIT)
@@ -24,6 +24,8 @@ License: The MIT License (MIT)
24
24
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
25
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26
26
  THE SOFTWARE.
27
+ Project-URL: Repository, https://github.com/4C-multiphysics/fourcipp/
28
+ Project-URL: Issues, https://github.com/4C-multiphysics/fourcipp/issues/
27
29
  Requires-Python: >=3.10
28
30
  Description-Content-Type: text/markdown
29
31
  License-File: LICENSE
@@ -42,10 +44,13 @@ Dynamic: license-file
42
44
 
43
45
  <p align="center">
44
46
  <picture>
47
+ <source
48
+ srcset="https://raw.githubusercontent.com/4C-multiphysics/fourcipp/refs/heads/main/docs/assets/fourcipp_logo_white.svg"
49
+ media="(prefers-color-scheme: dark)">
45
50
  <img
46
- src="docs/assets/fourcipp_logo_black.svg"
51
+ src="https://raw.githubusercontent.com/4C-multiphysics/fourcipp/refs/heads/main/docs/assets/fourcipp_logo_black.svg"
47
52
  width="300"
48
- title="FourCIPP logo"
53
+ title="FourCIPP"
49
54
  alt="FourCIPP logo">
50
55
  </picture>
51
56
  </p>
@@ -54,41 +59,89 @@ FourCIPP (**FourC** **I**nput **P**ython **P**arser) holds a Python Parser to si
54
59
 
55
60
  ## Overview <!-- omit from toc -->
56
61
  - [Installation](#installation)
62
+ - [Python Environment](#python-environment)
63
+ - [Installation from PyPI](#installation-from-pypi)
64
+ - [Installation from Github (most recent version)](#installation-from-github-most-recent-version)
65
+ - [Installation from source](#installation-from-source)
57
66
  - [Quickstart example](#quickstart-example)
58
67
  - [Configuration](#configuration)
59
68
  - [Developing FourCIPP](#developing-fourcipp)
60
69
  - [Dependency Management](#dependency-management)
61
70
  - [License](#license)
62
71
 
72
+ ## Installation
63
73
 
74
+ ### Python Environment
64
75
 
65
- ## Installation
76
+ FourCIPP is a Python project supporting Python versions 3.10 - 3.13. To use FourCIPP it is recommended to install it into a virtual Python environment such as [Conda](https://anaconda.org/anaconda/conda)/[Miniforge](https://conda-forge.org/download/) or [venv](https://docs.python.org/3/library/venv.html).
77
+
78
+ An exemplary [Conda](https://anaconda.org/anaconda/conda)/[Miniforge](https://conda-forge.org/download/) environment can be created and loaded with
79
+
80
+ ```bash
81
+ # Create the environment (this only has to be done once)
82
+ conda create -n fourcipp python=3.13
83
+ # Activate the environment
84
+ conda activate fourcipp
85
+ ```
86
+
87
+ To now install FourCIPP different ways exist.
88
+
89
+ ### Installation from PyPI
90
+
91
+ FourCIPP is published on [PyPI](https://pypi.org/project/FourCIPP/) as a universal wheel, meaning you can install it on Windows, Linux and macOS with:
92
+
93
+ ```bash
94
+ pip install fourcipp
95
+ ```
96
+
97
+ or a specific version with:
98
+
99
+ ```bash
100
+ pip install fourcipp==0.28.0
101
+ ```
102
+
103
+ ### Installation from Github (most recent version)
104
+
105
+ Additionally, the latest `main` version of FourCIPP can be installed directly from Github via:
106
+
107
+ ```bash
108
+ pip install git+https://github.com/4C-multiphysics/fourcipp.git@main
109
+ ```
110
+
111
+ ### Installation from source
66
112
 
67
- For a quick and easy start an Anaconda/Miniconda environment is highly recommended. Other ways to install FourCIPP are possible but here the installation procedure is explained based on a conda install. After installing Anaconda/Miniconda
68
- execute the following steps:
113
+ If you intend on developing FourCIPP it is crucial to install FourCIPP from source, i.e., cloning the repository from Github. You can then either install it in a non-editable or editable fashion.
114
+
115
+ - Install all requirements without fixed versions in a non-editable fashion via:
69
116
 
70
- - Create a new Anaconda environment:
71
117
  ```bash
72
- conda create -n fourcipp python=3.12
118
+ # located at the root of the repository
119
+ pip install .
73
120
  ```
74
121
 
75
- - Activate your newly created environment:
122
+ and without fixed versions in an editable fashion via:
123
+
76
124
  ```bash
77
- conda activate fourcipp
125
+ # located at the root of the repository
126
+ pip install -e .
78
127
  ```
79
128
 
80
- - Install all requirements without fixed versions via:
81
- ```
82
- pip install .
83
- ```
84
129
  > Note: This is the default behavior. This allows to use fourcipp within other projects without version conflicts.
85
130
 
86
- - Install all requirements with fixed versions with:
87
- ```
131
+ - Alternatively, you can install all requirements with fixed versions in a non-editable fashion with:
132
+
133
+ ```bash
88
134
  pip install .[safe]
89
135
  ```
90
136
 
91
- Now you are up and running 🎉
137
+ and with fixed versions in an editable fashion via:
138
+
139
+ ```bash
140
+ # located at the root of the repository
141
+ pip install -e .[safe]
142
+ ```
143
+
144
+ Once installed, FourCIPP is ready to be used 🎉
92
145
 
93
146
  ## Quickstart example
94
147
  <!--example, do not remove this comment-->
@@ -141,14 +194,15 @@ and select it using the `profile` entry.
141
194
 
142
195
  ## Developing FourCIPP
143
196
 
144
- If you plan on actively developing FourCIPP it is advisable to install in editable mode with the development requirements like
197
+ If you plan on actively developing FourCIPP it is advisable to install in editable mode with the additional developer requirements like
145
198
 
146
199
  ```bash
147
200
  pip install -e .[dev]
148
201
  ```
149
202
 
150
- You can install the pre-commit hook with:
151
- ```
203
+ > Note: The developer requirements can also be installed in non-editable installs. Finally, you can install the pre-commit hook with:
204
+
205
+ ```bash
152
206
  pre-commit install
153
207
  ```
154
208
 
@@ -1,6 +1,6 @@
1
1
  fourcipp/__init__.py,sha256=4pz7DVXErSbUcLqPTaHnQfdJzKkpfZDivBqbHbTgpRE,1388
2
2
  fourcipp/fourc_input.py,sha256=4ZcaD5NQVqPqsUaUCap0UFLn80QboXSbrvWk1qd7yTU,21260
3
- fourcipp/version.py,sha256=HVwqojcoXKaAY41nP0Jzb2D4AuEjJK_m-opYVEhFX9w,706
3
+ fourcipp/version.py,sha256=ePNVzJOkxR8FY5bezqKQ_fgBRbzH1G7QTaRDHvGQRAY,704
4
4
  fourcipp/config/4C_metadata.yaml,sha256=r0tDcaRhHdEPu7ex7NvTFuoAiSuASdO6NdL4t7ms2y4,11826453
5
5
  fourcipp/config/4C_schema.json,sha256=Lk9eWjvR5j2Mq3qlRsWWZMXYvd9OVOYZ_JNhDoxJLhk,16343600
6
6
  fourcipp/config/config.yaml,sha256=n2c2a6E4HKfAdNWOQz1kLUuf5p4NLxIddaAi2t5eM38,460
@@ -20,9 +20,9 @@ fourcipp/utils/not_set.py,sha256=04C_3axe2cupBYgfpgDAcGs1zHVzG3I58UGO58TH05A,201
20
20
  fourcipp/utils/typing.py,sha256=8iX9PuKe8B1WJ3vEjiM5ZfefvgYnaZDiSdB7Nx9SrVw,1625
21
21
  fourcipp/utils/validation.py,sha256=FejHOj1MddaU7gEpMN-f8Mz3rYjflakd1qcsKnctHqA,5292
22
22
  fourcipp/utils/yaml_io.py,sha256=fPJiIMVzVoHX97LFynGxmQ2PKQsUAb3GIBDWvkPfftI,3477
23
- fourcipp-0.29.0.dist-info/licenses/LICENSE,sha256=lkSOHdH9IZ8c3Vnz0fFjqls1cRlmLADBP8QEIwUlH3o,1082
24
- fourcipp-0.29.0.dist-info/METADATA,sha256=sJ5r9T1oZD282fzVNfuxStFW_Jqv8DmGxCKP2XaWDkA,5810
25
- fourcipp-0.29.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
26
- fourcipp-0.29.0.dist-info/entry_points.txt,sha256=44XBG4bwhuq1EwOZ0U055HYP8_qN6_d30ecVsa5Igng,53
27
- fourcipp-0.29.0.dist-info/top_level.txt,sha256=oZ6jgFFmvi157VwGUEFuKT3D8oS5mOkpOVx8zZURZrQ,9
28
- fourcipp-0.29.0.dist-info/RECORD,,
23
+ fourcipp-1.1.0.dist-info/licenses/LICENSE,sha256=lkSOHdH9IZ8c3Vnz0fFjqls1cRlmLADBP8QEIwUlH3o,1082
24
+ fourcipp-1.1.0.dist-info/METADATA,sha256=xSrEX3PHqiOLeizFCLaXvTFOYzymi9hotkdIcY6n7Fc,7967
25
+ fourcipp-1.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
26
+ fourcipp-1.1.0.dist-info/entry_points.txt,sha256=44XBG4bwhuq1EwOZ0U055HYP8_qN6_d30ecVsa5Igng,53
27
+ fourcipp-1.1.0.dist-info/top_level.txt,sha256=oZ6jgFFmvi157VwGUEFuKT3D8oS5mOkpOVx8zZURZrQ,9
28
+ fourcipp-1.1.0.dist-info/RECORD,,