gasdyn 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.
gasdyn-0.0.1/LICENSE ADDED
@@ -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.
gasdyn-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: gasdyn
3
+ Version: 0.0.1
4
+ Summary: Compressible inviscid flow calculator: shocks, expansions, isentropic relations
5
+ Author-email: Christoph Hader <chader@arizona.edu>
6
+ License: BSD-3-Clause
7
+ Project-URL: Homepage, https://github.com/uahypersonics/gasdyn
8
+ Project-URL: Repository, https://github.com/uahypersonics/gasdyn
9
+ Keywords: compressible-flow,gas-dynamics,shocks,isentropic,aerodynamics
10
+ Classifier: Development Status :: 1 - Planning
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
+ Dynamic: license-file
23
+
24
+ # gasdyn
25
+ Compressible inviscid flow calculator: shocks, expansions, isentropic relations. Python API, CLI, and web app.
gasdyn-0.0.1/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # gasdyn
2
+ Compressible inviscid flow calculator: shocks, expansions, isentropic relations. Python API, CLI, and web app.
@@ -0,0 +1,36 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "gasdyn"
7
+ version = "0.0.1"
8
+ description = "Compressible inviscid flow calculator: shocks, expansions, isentropic relations"
9
+ readme = "README.md"
10
+ license = {text = "BSD-3-Clause"}
11
+ requires-python = ">=3.11"
12
+ authors = [
13
+ {name = "Christoph Hader", email = "chader@arizona.edu"},
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 1 - Planning",
17
+ "Intended Audience :: Science/Research",
18
+ "License :: OSI Approved :: BSD License",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.11",
21
+ "Programming Language :: Python :: 3.12",
22
+ "Programming Language :: Python :: 3.13",
23
+ "Topic :: Scientific/Engineering :: Physics",
24
+ ]
25
+ keywords = ["compressible-flow", "gas-dynamics", "shocks", "isentropic", "aerodynamics"]
26
+
27
+ dependencies = [
28
+ "numpy>=1.24.0",
29
+ ]
30
+
31
+ [project.urls]
32
+ Homepage = "https://github.com/uahypersonics/gasdyn"
33
+ Repository = "https://github.com/uahypersonics/gasdyn"
34
+
35
+ [tool.setuptools.packages.find]
36
+ where = ["src"]
gasdyn-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,3 @@
1
+ """gasdyn - Compressible inviscid flow calculator."""
2
+
3
+ __version__ = "0.0.1"
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: gasdyn
3
+ Version: 0.0.1
4
+ Summary: Compressible inviscid flow calculator: shocks, expansions, isentropic relations
5
+ Author-email: Christoph Hader <chader@arizona.edu>
6
+ License: BSD-3-Clause
7
+ Project-URL: Homepage, https://github.com/uahypersonics/gasdyn
8
+ Project-URL: Repository, https://github.com/uahypersonics/gasdyn
9
+ Keywords: compressible-flow,gas-dynamics,shocks,isentropic,aerodynamics
10
+ Classifier: Development Status :: 1 - Planning
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
+ Dynamic: license-file
23
+
24
+ # gasdyn
25
+ Compressible inviscid flow calculator: shocks, expansions, isentropic relations. Python API, CLI, and web app.
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/gasdyn/__init__.py
5
+ src/gasdyn.egg-info/PKG-INFO
6
+ src/gasdyn.egg-info/SOURCES.txt
7
+ src/gasdyn.egg-info/dependency_links.txt
8
+ src/gasdyn.egg-info/requires.txt
9
+ src/gasdyn.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ numpy>=1.24.0
@@ -0,0 +1 @@
1
+ gasdyn