open-flash 0.1.2__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,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 symbiotic-engineering
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,2 @@
1
+ include requirements.txt
2
+ include LICENSE
@@ -0,0 +1,109 @@
1
+ Metadata-Version: 2.4
2
+ Name: open_flash
3
+ Version: 0.1.2
4
+ Summary: A Python package for matched eigenfunctions methods
5
+ Author: SEA LAB
6
+ Project-URL: Homepage, https://github.com/symbiotic-engineering/semi-analytical-hydro.git
7
+ Keywords: matched eigenfunctions,hydrodynamics,semi-analytical
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.8
10
+ Classifier: Programming Language :: Python :: 3.9
11
+ Classifier: Programming Language :: Python :: 3.10
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Intended Audience :: Science/Research
16
+ Classifier: Topic :: Scientific/Engineering :: Physics
17
+ Requires-Python: >=3.8
18
+ Description-Content-Type: text/markdown
19
+ Requires-Dist: appnope==0.1.4
20
+ Requires-Dist: asttokens==2.4.1
21
+ Requires-Dist: comm==0.2.2
22
+ Requires-Dist: contourpy==1.3.0
23
+ Requires-Dist: cycler==0.12.1
24
+ Requires-Dist: debugpy==1.8.6
25
+ Requires-Dist: decorator==5.1.1
26
+ Requires-Dist: executing==2.1.0
27
+ Requires-Dist: fonttools==4.54.1
28
+ Requires-Dist: ipykernel==6.29.5
29
+ Requires-Dist: ipython==8.18.1
30
+ Requires-Dist: jedi==0.19.1
31
+ Requires-Dist: jupyter_client==8.6.3
32
+ Requires-Dist: jupyter_core==5.7.2
33
+ Requires-Dist: kiwisolver==1.4.7
34
+ Requires-Dist: matplotlib==3.9.2
35
+ Requires-Dist: matplotlib-inline==0.1.7
36
+ Requires-Dist: nest-asyncio==1.6.0
37
+ Requires-Dist: numpy==2.0.2
38
+ Requires-Dist: packaging==24.1
39
+ Requires-Dist: pandas==2.2.3
40
+ Requires-Dist: parso==0.8.4
41
+ Requires-Dist: pexpect==4.9.0
42
+ Requires-Dist: pillow==10.4.0
43
+ Requires-Dist: platformdirs==4.3.6
44
+ Requires-Dist: prompt_toolkit==3.0.47
45
+ Requires-Dist: psutil==6.0.0
46
+ Requires-Dist: ptyprocess==0.7.0
47
+ Requires-Dist: pure_eval==0.2.3
48
+ Requires-Dist: Pygments==2.18.0
49
+ Requires-Dist: pyparsing==3.1.4
50
+ Requires-Dist: python-dateutil==2.9.0.post0
51
+ Requires-Dist: pytz==2024.2
52
+ Requires-Dist: pyzmq==26.2.0
53
+ Requires-Dist: scipy==1.13.1
54
+ Requires-Dist: six==1.16.0
55
+ Requires-Dist: stack-data==0.6.3
56
+ Requires-Dist: tornado==6.4.1
57
+ Requires-Dist: traitlets==5.14.3
58
+ Requires-Dist: tzdata==2024.2
59
+ Requires-Dist: wcwidth==0.2.13
60
+ Provides-Extra: dev
61
+ Requires-Dist: pytest==7.4.2; extra == "dev"
62
+ Requires-Dist: pytest-cov; extra == "dev"
63
+ Requires-Dist: sphinx>=3.0; extra == "dev"
64
+ Requires-Dist: sphinx-rtd-theme>=0.5; extra == "dev"
65
+ Requires-Dist: jupyter>=1.0.0; extra == "dev"
66
+ Provides-Extra: hydro
67
+ Requires-Dist: capytaine==2.2.1; extra == "hydro"
68
+
69
+ # meem
70
+
71
+ matlab: see `hydro/matlab/run_MEEM.m` for the symbolic and numeric code, see `test/matlab/` for some scripts to get results.
72
+
73
+ python: see `package/src/` for some helper functions.
74
+
75
+ `test/time_comparison` for time comparisons of BEM (Capytaine), and `dev/` for various matlab experiments.
76
+
77
+ ## About The Matched Eigenfunctions Project (MEEM)
78
+
79
+ The Matched Eigenfunctions Project (MEEM) is a Python package designed for solving boundary value problems using eigenfunction expansion methods. It provides a modular framework for defining complex geometries, setting up multi-domain problems, performing numerical computations, and analyzing results, particularly in fields like fluid dynamics and acoustics.
80
+
81
+ When referencing this work, please reference our `docs/citations.rst`
82
+
83
+ **License:**
84
+
85
+ This project is licensed under the MIT License. See the `LICENSE` file for details.
86
+
87
+ **How to Run the Python Code:**
88
+
89
+ 1. **Install the package:**
90
+ ```bash
91
+ pip install git+[https://github.com/symbiotic-engineering/semi-analytical-hydro.git](https://github.com/symbiotic-engineering/semi-analytical-hydro.git)
92
+ ```
93
+ 2. **Install dependencies:** Navigate to the project directory (if you cloned it) and run:
94
+ ```bash
95
+ pip install -r requirements.txt
96
+ ```
97
+ 3. **Explore the `docs/` and `package/test` directory:** These directories contain scripts and notebooks demonstrating how to use the MEEM framework for different problems. Run these examples to understand the workflow.
98
+ 4. **Refer to the documentation in the `docs/` directory:** The documentation provides detailed information on the different modules and classes within the `meem` package.
99
+
100
+ ## References
101
+
102
+ The following publications are relevant to this package:
103
+
104
+ 1. I. K. Chatjigeorgiou, *Analytical Methods in Marine Hydrodynamics*. Cambridge: Cambridge University Press, 2018. doi: 10.1017/9781316838983.
105
+ 2. F. P. Chau and R. W. Yeung, “Inertia and Damping of Heaving Compound Cylinders,” presented at the 25th International Workshop on Water Waves and Floating Bodies, Harbin, China, Jan. 2010. Accessed: Sep. 27, 2023. [Online]. Available: https://www.academia.edu/73219479/Inertia_and_Damping_of_Heaving_Compound_Cylinders_Fun
106
+ 3. F. P. Chau and R. W. Yeung, “Inertia, Damping, and Wave Excitation of Heaving Coaxial Cylinders,” presented at the ASME 2012 31st International Conference on Ocean, Offshore and Arctic Engineering, American Society of Mechanical Engineers Digital Collection, Aug. 2013, pp. 803–813. doi: 10.1115/OMAE2012-83987.
107
+ 4. R. W. Yeung, “Added mass and damping of a vertical cylinder in finite-depth waters,” *Appl. Ocean Res.*, vol. 3, no. 3, pp. 119–133, Jul. 1981, doi: 10.1016/0141-1187(81)90101-2.
108
+ 5. D. Son, V. Belissen, and R. W. Yeung, “Performance validation and optimization of a dual coaxial-cylinder ocean-wave energy extractor,” *Renew. Energy*, vol. 92, pp. 192–201, Jul. 2016, doi: 10.1016/j.renene.2016.01.032.
109
+ 6. K. Kokkinowrachos, S. Mavrakos, and S. Asorakos, “Behaviour of vertical bodies of revolution in waves,” *Ocean Eng.*, vol. 13, no. 6, pp. 505–538, Jan. 1986, doi: 10.1016/0029-8018(86)90037-5.
@@ -0,0 +1,41 @@
1
+ # meem
2
+
3
+ matlab: see `hydro/matlab/run_MEEM.m` for the symbolic and numeric code, see `test/matlab/` for some scripts to get results.
4
+
5
+ python: see `package/src/` for some helper functions.
6
+
7
+ `test/time_comparison` for time comparisons of BEM (Capytaine), and `dev/` for various matlab experiments.
8
+
9
+ ## About The Matched Eigenfunctions Project (MEEM)
10
+
11
+ The Matched Eigenfunctions Project (MEEM) is a Python package designed for solving boundary value problems using eigenfunction expansion methods. It provides a modular framework for defining complex geometries, setting up multi-domain problems, performing numerical computations, and analyzing results, particularly in fields like fluid dynamics and acoustics.
12
+
13
+ When referencing this work, please reference our `docs/citations.rst`
14
+
15
+ **License:**
16
+
17
+ This project is licensed under the MIT License. See the `LICENSE` file for details.
18
+
19
+ **How to Run the Python Code:**
20
+
21
+ 1. **Install the package:**
22
+ ```bash
23
+ pip install git+[https://github.com/symbiotic-engineering/semi-analytical-hydro.git](https://github.com/symbiotic-engineering/semi-analytical-hydro.git)
24
+ ```
25
+ 2. **Install dependencies:** Navigate to the project directory (if you cloned it) and run:
26
+ ```bash
27
+ pip install -r requirements.txt
28
+ ```
29
+ 3. **Explore the `docs/` and `package/test` directory:** These directories contain scripts and notebooks demonstrating how to use the MEEM framework for different problems. Run these examples to understand the workflow.
30
+ 4. **Refer to the documentation in the `docs/` directory:** The documentation provides detailed information on the different modules and classes within the `meem` package.
31
+
32
+ ## References
33
+
34
+ The following publications are relevant to this package:
35
+
36
+ 1. I. K. Chatjigeorgiou, *Analytical Methods in Marine Hydrodynamics*. Cambridge: Cambridge University Press, 2018. doi: 10.1017/9781316838983.
37
+ 2. F. P. Chau and R. W. Yeung, “Inertia and Damping of Heaving Compound Cylinders,” presented at the 25th International Workshop on Water Waves and Floating Bodies, Harbin, China, Jan. 2010. Accessed: Sep. 27, 2023. [Online]. Available: https://www.academia.edu/73219479/Inertia_and_Damping_of_Heaving_Compound_Cylinders_Fun
38
+ 3. F. P. Chau and R. W. Yeung, “Inertia, Damping, and Wave Excitation of Heaving Coaxial Cylinders,” presented at the ASME 2012 31st International Conference on Ocean, Offshore and Arctic Engineering, American Society of Mechanical Engineers Digital Collection, Aug. 2013, pp. 803–813. doi: 10.1115/OMAE2012-83987.
39
+ 4. R. W. Yeung, “Added mass and damping of a vertical cylinder in finite-depth waters,” *Appl. Ocean Res.*, vol. 3, no. 3, pp. 119–133, Jul. 1981, doi: 10.1016/0141-1187(81)90101-2.
40
+ 5. D. Son, V. Belissen, and R. W. Yeung, “Performance validation and optimization of a dual coaxial-cylinder ocean-wave energy extractor,” *Renew. Energy*, vol. 92, pp. 192–201, Jul. 2016, doi: 10.1016/j.renene.2016.01.032.
41
+ 6. K. Kokkinowrachos, S. Mavrakos, and S. Asorakos, “Behaviour of vertical bodies of revolution in waves,” *Ocean Eng.*, vol. 13, no. 6, pp. 505–538, Jan. 1986, doi: 10.1016/0029-8018(86)90037-5.
@@ -0,0 +1,109 @@
1
+ Metadata-Version: 2.4
2
+ Name: open_flash
3
+ Version: 0.1.2
4
+ Summary: A Python package for matched eigenfunctions methods
5
+ Author: SEA LAB
6
+ Project-URL: Homepage, https://github.com/symbiotic-engineering/semi-analytical-hydro.git
7
+ Keywords: matched eigenfunctions,hydrodynamics,semi-analytical
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.8
10
+ Classifier: Programming Language :: Python :: 3.9
11
+ Classifier: Programming Language :: Python :: 3.10
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Intended Audience :: Science/Research
16
+ Classifier: Topic :: Scientific/Engineering :: Physics
17
+ Requires-Python: >=3.8
18
+ Description-Content-Type: text/markdown
19
+ Requires-Dist: appnope==0.1.4
20
+ Requires-Dist: asttokens==2.4.1
21
+ Requires-Dist: comm==0.2.2
22
+ Requires-Dist: contourpy==1.3.0
23
+ Requires-Dist: cycler==0.12.1
24
+ Requires-Dist: debugpy==1.8.6
25
+ Requires-Dist: decorator==5.1.1
26
+ Requires-Dist: executing==2.1.0
27
+ Requires-Dist: fonttools==4.54.1
28
+ Requires-Dist: ipykernel==6.29.5
29
+ Requires-Dist: ipython==8.18.1
30
+ Requires-Dist: jedi==0.19.1
31
+ Requires-Dist: jupyter_client==8.6.3
32
+ Requires-Dist: jupyter_core==5.7.2
33
+ Requires-Dist: kiwisolver==1.4.7
34
+ Requires-Dist: matplotlib==3.9.2
35
+ Requires-Dist: matplotlib-inline==0.1.7
36
+ Requires-Dist: nest-asyncio==1.6.0
37
+ Requires-Dist: numpy==2.0.2
38
+ Requires-Dist: packaging==24.1
39
+ Requires-Dist: pandas==2.2.3
40
+ Requires-Dist: parso==0.8.4
41
+ Requires-Dist: pexpect==4.9.0
42
+ Requires-Dist: pillow==10.4.0
43
+ Requires-Dist: platformdirs==4.3.6
44
+ Requires-Dist: prompt_toolkit==3.0.47
45
+ Requires-Dist: psutil==6.0.0
46
+ Requires-Dist: ptyprocess==0.7.0
47
+ Requires-Dist: pure_eval==0.2.3
48
+ Requires-Dist: Pygments==2.18.0
49
+ Requires-Dist: pyparsing==3.1.4
50
+ Requires-Dist: python-dateutil==2.9.0.post0
51
+ Requires-Dist: pytz==2024.2
52
+ Requires-Dist: pyzmq==26.2.0
53
+ Requires-Dist: scipy==1.13.1
54
+ Requires-Dist: six==1.16.0
55
+ Requires-Dist: stack-data==0.6.3
56
+ Requires-Dist: tornado==6.4.1
57
+ Requires-Dist: traitlets==5.14.3
58
+ Requires-Dist: tzdata==2024.2
59
+ Requires-Dist: wcwidth==0.2.13
60
+ Provides-Extra: dev
61
+ Requires-Dist: pytest==7.4.2; extra == "dev"
62
+ Requires-Dist: pytest-cov; extra == "dev"
63
+ Requires-Dist: sphinx>=3.0; extra == "dev"
64
+ Requires-Dist: sphinx-rtd-theme>=0.5; extra == "dev"
65
+ Requires-Dist: jupyter>=1.0.0; extra == "dev"
66
+ Provides-Extra: hydro
67
+ Requires-Dist: capytaine==2.2.1; extra == "hydro"
68
+
69
+ # meem
70
+
71
+ matlab: see `hydro/matlab/run_MEEM.m` for the symbolic and numeric code, see `test/matlab/` for some scripts to get results.
72
+
73
+ python: see `package/src/` for some helper functions.
74
+
75
+ `test/time_comparison` for time comparisons of BEM (Capytaine), and `dev/` for various matlab experiments.
76
+
77
+ ## About The Matched Eigenfunctions Project (MEEM)
78
+
79
+ The Matched Eigenfunctions Project (MEEM) is a Python package designed for solving boundary value problems using eigenfunction expansion methods. It provides a modular framework for defining complex geometries, setting up multi-domain problems, performing numerical computations, and analyzing results, particularly in fields like fluid dynamics and acoustics.
80
+
81
+ When referencing this work, please reference our `docs/citations.rst`
82
+
83
+ **License:**
84
+
85
+ This project is licensed under the MIT License. See the `LICENSE` file for details.
86
+
87
+ **How to Run the Python Code:**
88
+
89
+ 1. **Install the package:**
90
+ ```bash
91
+ pip install git+[https://github.com/symbiotic-engineering/semi-analytical-hydro.git](https://github.com/symbiotic-engineering/semi-analytical-hydro.git)
92
+ ```
93
+ 2. **Install dependencies:** Navigate to the project directory (if you cloned it) and run:
94
+ ```bash
95
+ pip install -r requirements.txt
96
+ ```
97
+ 3. **Explore the `docs/` and `package/test` directory:** These directories contain scripts and notebooks demonstrating how to use the MEEM framework for different problems. Run these examples to understand the workflow.
98
+ 4. **Refer to the documentation in the `docs/` directory:** The documentation provides detailed information on the different modules and classes within the `meem` package.
99
+
100
+ ## References
101
+
102
+ The following publications are relevant to this package:
103
+
104
+ 1. I. K. Chatjigeorgiou, *Analytical Methods in Marine Hydrodynamics*. Cambridge: Cambridge University Press, 2018. doi: 10.1017/9781316838983.
105
+ 2. F. P. Chau and R. W. Yeung, “Inertia and Damping of Heaving Compound Cylinders,” presented at the 25th International Workshop on Water Waves and Floating Bodies, Harbin, China, Jan. 2010. Accessed: Sep. 27, 2023. [Online]. Available: https://www.academia.edu/73219479/Inertia_and_Damping_of_Heaving_Compound_Cylinders_Fun
106
+ 3. F. P. Chau and R. W. Yeung, “Inertia, Damping, and Wave Excitation of Heaving Coaxial Cylinders,” presented at the ASME 2012 31st International Conference on Ocean, Offshore and Arctic Engineering, American Society of Mechanical Engineers Digital Collection, Aug. 2013, pp. 803–813. doi: 10.1115/OMAE2012-83987.
107
+ 4. R. W. Yeung, “Added mass and damping of a vertical cylinder in finite-depth waters,” *Appl. Ocean Res.*, vol. 3, no. 3, pp. 119–133, Jul. 1981, doi: 10.1016/0141-1187(81)90101-2.
108
+ 5. D. Son, V. Belissen, and R. W. Yeung, “Performance validation and optimization of a dual coaxial-cylinder ocean-wave energy extractor,” *Renew. Energy*, vol. 92, pp. 192–201, Jul. 2016, doi: 10.1016/j.renene.2016.01.032.
109
+ 6. K. Kokkinowrachos, S. Mavrakos, and S. Asorakos, “Behaviour of vertical bodies of revolution in waves,” *Ocean Eng.*, vol. 13, no. 6, pp. 505–538, Jan. 1986, doi: 10.1016/0029-8018(86)90037-5.
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ MANIFEST.in
3
+ README.md
4
+ pyproject.toml
5
+ requirements.txt
6
+ package/src/open_flash.egg-info/PKG-INFO
7
+ package/src/open_flash.egg-info/SOURCES.txt
8
+ package/src/open_flash.egg-info/dependency_links.txt
9
+ package/src/open_flash.egg-info/requires.txt
10
+ package/src/open_flash.egg-info/top_level.txt
@@ -0,0 +1,51 @@
1
+ appnope==0.1.4
2
+ asttokens==2.4.1
3
+ comm==0.2.2
4
+ contourpy==1.3.0
5
+ cycler==0.12.1
6
+ debugpy==1.8.6
7
+ decorator==5.1.1
8
+ executing==2.1.0
9
+ fonttools==4.54.1
10
+ ipykernel==6.29.5
11
+ ipython==8.18.1
12
+ jedi==0.19.1
13
+ jupyter_client==8.6.3
14
+ jupyter_core==5.7.2
15
+ kiwisolver==1.4.7
16
+ matplotlib==3.9.2
17
+ matplotlib-inline==0.1.7
18
+ nest-asyncio==1.6.0
19
+ numpy==2.0.2
20
+ packaging==24.1
21
+ pandas==2.2.3
22
+ parso==0.8.4
23
+ pexpect==4.9.0
24
+ pillow==10.4.0
25
+ platformdirs==4.3.6
26
+ prompt_toolkit==3.0.47
27
+ psutil==6.0.0
28
+ ptyprocess==0.7.0
29
+ pure_eval==0.2.3
30
+ Pygments==2.18.0
31
+ pyparsing==3.1.4
32
+ python-dateutil==2.9.0.post0
33
+ pytz==2024.2
34
+ pyzmq==26.2.0
35
+ scipy==1.13.1
36
+ six==1.16.0
37
+ stack-data==0.6.3
38
+ tornado==6.4.1
39
+ traitlets==5.14.3
40
+ tzdata==2024.2
41
+ wcwidth==0.2.13
42
+
43
+ [dev]
44
+ pytest==7.4.2
45
+ pytest-cov
46
+ sphinx>=3.0
47
+ sphinx-rtd-theme>=0.5
48
+ jupyter>=1.0.0
49
+
50
+ [hydro]
51
+ capytaine==2.2.1
@@ -0,0 +1,90 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "open_flash"
7
+ version = "0.1.2"
8
+ authors = [
9
+ {name = "SEA LAB"}
10
+ ]
11
+ description = "A Python package for matched eigenfunctions methods"
12
+ readme = "README.md"
13
+ requires-python = ">=3.8"
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "Programming Language :: Python :: 3.8",
17
+ "Programming Language :: Python :: 3.9",
18
+ "Programming Language :: Python :: 3.10",
19
+ "Programming Language :: Python :: 3.11",
20
+ "Programming Language :: Python :: 3.12",
21
+ "Operating System :: OS Independent",
22
+ "Intended Audience :: Science/Research",
23
+ "Topic :: Scientific/Engineering :: Physics",
24
+ ]
25
+ dependencies = [
26
+ "appnope==0.1.4",
27
+ "asttokens==2.4.1",
28
+ "comm==0.2.2",
29
+ "contourpy==1.3.0",
30
+ "cycler==0.12.1",
31
+ "debugpy==1.8.6",
32
+ "decorator==5.1.1",
33
+ "executing==2.1.0",
34
+ "fonttools==4.54.1",
35
+ "ipykernel==6.29.5",
36
+ "ipython==8.18.1",
37
+ "jedi==0.19.1",
38
+ "jupyter_client==8.6.3",
39
+ "jupyter_core==5.7.2",
40
+ "kiwisolver==1.4.7",
41
+ "matplotlib==3.9.2",
42
+ "matplotlib-inline==0.1.7",
43
+ "nest-asyncio==1.6.0",
44
+ "numpy==2.0.2",
45
+ "packaging==24.1",
46
+ "pandas==2.2.3",
47
+ "parso==0.8.4",
48
+ "pexpect==4.9.0",
49
+ "pillow==10.4.0",
50
+ "platformdirs==4.3.6",
51
+ "prompt_toolkit==3.0.47",
52
+ "psutil==6.0.0",
53
+ "ptyprocess==0.7.0",
54
+ "pure_eval==0.2.3",
55
+ "Pygments==2.18.0",
56
+ "pyparsing==3.1.4",
57
+ "python-dateutil==2.9.0.post0",
58
+ "pytz==2024.2",
59
+ "pyzmq==26.2.0",
60
+ "scipy==1.13.1",
61
+ "six==1.16.0",
62
+ "stack-data==0.6.3",
63
+ "tornado==6.4.1",
64
+ "traitlets==5.14.3",
65
+ "tzdata==2024.2",
66
+ "wcwidth==0.2.13",
67
+ ]
68
+ keywords = ["matched eigenfunctions", "hydrodynamics", "semi-analytical"]
69
+ urls = { Homepage = "https://github.com/symbiotic-engineering/semi-analytical-hydro.git" }
70
+
71
+ [project.optional-dependencies]
72
+ dev = [
73
+ "pytest==7.4.2",
74
+ "pytest-cov",
75
+ "sphinx>=3.0",
76
+ "sphinx-rtd-theme>=0.5",
77
+ "jupyter>=1.0.0",
78
+ ]
79
+ hydro = [
80
+ "capytaine==2.2.1",
81
+ ]
82
+
83
+ [tool.setuptools.packages.find]
84
+ where = ["package/src"]
85
+
86
+ [tool.setuptools.package-data]
87
+ "open_flash" = [] # Explicitly state no package data
88
+
89
+ [tool.setuptools]
90
+ license-files = []
@@ -0,0 +1,44 @@
1
+ appnope==0.1.4
2
+ asttokens==2.4.1
3
+ comm==0.2.2
4
+ contourpy==1.3.0
5
+ cycler==0.12.1
6
+ debugpy==1.8.6
7
+ decorator==5.1.1
8
+ executing==2.1.0
9
+ fonttools==4.54.1
10
+ ipykernel==6.29.5
11
+ ipython==8.18.1
12
+ jedi==0.19.1
13
+ jupyter_client==8.6.3
14
+ jupyter_core==5.7.2
15
+ kiwisolver==1.4.7
16
+ matplotlib==3.9.2
17
+ matplotlib-inline==0.1.7
18
+ nest-asyncio==1.6.0
19
+ numpy==2.0.2
20
+ packaging==24.1
21
+ pandas==2.2.3
22
+ parso==0.8.4
23
+ pexpect==4.9.0
24
+ pillow==10.4.0
25
+ platformdirs==4.3.6
26
+ prompt_toolkit==3.0.47
27
+ psutil==6.0.0
28
+ ptyprocess==0.7.0
29
+ pure_eval==0.2.3
30
+ Pygments==2.18.0
31
+ pyparsing==3.1.4
32
+ python-dateutil==2.9.0.post0
33
+ pytz==2024.2
34
+ pyzmq==26.2.0
35
+ scipy== 1.13.1
36
+ six==1.16.0
37
+ stack-data==0.6.3
38
+ tornado==6.4.1
39
+ traitlets==5.14.3
40
+ tzdata==2024.2
41
+ wcwidth==0.2.13
42
+ pytest==7.4.2
43
+ pytest-cov
44
+ capytaine==2.2.1
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+