open-fdd 0.1.1__py3-none-any.whl → 0.1.3__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.
- open_fdd/air_handling_unit/faults/fault_condition.py +26 -8
- open_fdd/air_handling_unit/faults/fault_condition_eight.py +61 -37
- open_fdd/air_handling_unit/faults/fault_condition_eleven.py +59 -37
- open_fdd/air_handling_unit/faults/fault_condition_fifteen.py +77 -51
- open_fdd/air_handling_unit/faults/fault_condition_five.py +60 -41
- open_fdd/air_handling_unit/faults/fault_condition_four.py +108 -65
- open_fdd/air_handling_unit/faults/fault_condition_fourteen.py +71 -44
- open_fdd/air_handling_unit/faults/fault_condition_nine.py +60 -36
- open_fdd/air_handling_unit/faults/fault_condition_one.py +58 -37
- open_fdd/air_handling_unit/faults/fault_condition_seven.py +55 -32
- open_fdd/air_handling_unit/faults/fault_condition_six.py +100 -76
- open_fdd/air_handling_unit/faults/fault_condition_ten.py +62 -37
- open_fdd/air_handling_unit/faults/fault_condition_thirteen.py +61 -36
- open_fdd/air_handling_unit/faults/fault_condition_three.py +58 -33
- open_fdd/air_handling_unit/faults/fault_condition_twelve.py +63 -39
- open_fdd/air_handling_unit/faults/fault_condition_two.py +58 -36
- open_fdd/air_handling_unit/faults/helper_utils.py +294 -64
- open_fdd/air_handling_unit/images/ahu1_fc1_2024-06_1.jpg +0 -0
- open_fdd/air_handling_unit/images/ahu1_fc1_2024-06_2.jpg +0 -0
- open_fdd/air_handling_unit/images/example1.jpg +0 -0
- open_fdd/air_handling_unit/images/example2.jpg +0 -0
- open_fdd/air_handling_unit/images/fc10_definition.png +0 -0
- open_fdd/air_handling_unit/images/fc11_definition.png +0 -0
- open_fdd/air_handling_unit/images/fc12_definition.png +0 -0
- open_fdd/air_handling_unit/images/fc13_definition.png +0 -0
- open_fdd/air_handling_unit/images/fc1_definition.png +0 -0
- open_fdd/air_handling_unit/images/fc1_report_screenshot_all.png +0 -0
- open_fdd/air_handling_unit/images/fc2_definition.png +0 -0
- open_fdd/air_handling_unit/images/fc3_definition.png +0 -0
- open_fdd/air_handling_unit/images/fc4_definition.png +0 -0
- open_fdd/air_handling_unit/images/fc5_definition.png +0 -0
- open_fdd/air_handling_unit/images/fc6_definition.png +0 -0
- open_fdd/air_handling_unit/images/fc7_definition.png +0 -0
- open_fdd/air_handling_unit/images/fc8_definition.png +0 -0
- open_fdd/air_handling_unit/images/fc9_definition.png +0 -0
- open_fdd/air_handling_unit/images/latex_generator.py +175 -0
- open_fdd/air_handling_unit/images/params.docx +0 -0
- open_fdd/air_handling_unit/images/params.pdf +0 -0
- open_fdd/air_handling_unit/images/plot_for_repo.png +0 -0
- open_fdd/air_handling_unit/reports/base_report.py +47 -0
- open_fdd/air_handling_unit/reports/report_fc7.py +3 -1
- open_fdd/tests/ahu/test_ahu_fc1.py +17 -0
- open_fdd/tests/ahu/test_ahu_fc4.py +127 -199
- {open_fdd-0.1.1.dist-info → open_fdd-0.1.3.dist-info}/METADATA +35 -5
- {open_fdd-0.1.1.dist-info → open_fdd-0.1.3.dist-info}/RECORD +48 -25
- {open_fdd-0.1.1.dist-info → open_fdd-0.1.3.dist-info}/LICENSE +0 -0
- {open_fdd-0.1.1.dist-info → open_fdd-0.1.3.dist-info}/WHEEL +0 -0
- {open_fdd-0.1.1.dist-info → open_fdd-0.1.3.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: open_fdd
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.3
|
4
4
|
Summary: A package for fault detection and diagnosis in HVAC systems
|
5
5
|
Home-page: https://github.com/bbartling/open-fdd
|
6
6
|
Author: Ben Bartling
|
@@ -20,6 +20,7 @@ Requires-Dist: pytest
|
|
20
20
|

|
21
21
|

|
22
22
|

|
23
|
+

|
23
24
|
|
24
25
|
|
25
26
|

|
@@ -29,17 +30,46 @@ This is a Python-based Fault Detection and Diagnostics (FDD) tool for running fa
|
|
29
30
|
|
30
31
|
|
31
32
|
## Getting Setup
|
32
|
-
|
33
|
-
|
34
|
-
This project is on PyPI now so get setup with this command using the Python package manager called pip.
|
33
|
+
This project is now available on PyPI, making it easy to set up with the Python package manager, pip. You can install the package using the following command:
|
35
34
|
|
36
35
|
```bash
|
37
36
|
pip install open-fdd
|
38
37
|
```
|
39
38
|
|
40
|
-
|
39
|
+
For running Jupyter notebooks, I recommend using Visual Studio Code with the Jupyter notebook extension installed, which offers a seamless experience directly within the editor. Be sure to explore the `examples` directory for Jupyter notebook tutorials. If you have your own FDD experiences to share, feel free to contribute by creating a notebook (`.ipynb`). You’re welcome to reach out to me directly, and I can push your example to GitHub on your behalf, which might be a simpler process than submitting a pull request (PR), especially if you're just sharing an example rather than developing `open-fdd`.
|
40
|
+
|
41
|
+
## Project goals
|
42
|
+
These are some basic project goals to make this into an interactive FDD application.
|
43
|
+
- [x] finish `air_handling_unit` faults and reports based on ASHRAE and NIST
|
44
|
+
- [x] publish to PyPI as Python library
|
45
|
+
- [ ] make a few IPython notebook tutorials AHU FDD examples with `BRICK` meta data integration.
|
46
|
+
- [ ] make a guide for fault `parameters` like error thresholds, etc.
|
47
|
+
- [ ] make `central_plant` faults, IPython reports, and examples.
|
48
|
+
- [ ] make `energy_efficiency` faults, IPython reports, and examples to `optimize` in reducing energy consumption.
|
49
|
+
- [ ] make `metering`, faults, IPython reports, and examples to possibly model utility metering data.
|
50
|
+
- [ ] create SQL example to read data from time series db and write back to SQL to then read faults in Grafana.
|
51
|
+
- [ ] other?
|
52
|
+
|
53
|
+
Certainly! Here's a revised version of your contribution guidelines:
|
41
54
|
|
42
55
|
## Contribute
|
56
|
+
|
57
|
+
If you have suggestions for improving developer best practices or solutions, please feel free to reach out to me directly using my contact information or Git issue/discussion. I primarily work on Windows with multiple versions of Python installed, with Python 3.12.x as my default version. You can download the latest version of Python here:
|
58
|
+
* https://www.python.org/downloads/
|
59
|
+
|
60
|
+
1. **Adding New Faults and Reports:**
|
61
|
+
Developers will need to `> py -3.12 -m pip install black pytest`. When adding new faults and reports, I usually run `> py -3.12 -m pip install .` in the cloned project directory. I continuously uninstall with `> py -3.12 -m pip uninstall open-fdd` and reinstall locally until I'm satisfied with the changes.
|
62
|
+
|
63
|
+
2. **Testing Fault Logic:**
|
64
|
+
All fault logic is rigorously tested using `pytest`. You can run the tests with `> py -m pytest`.
|
65
|
+
|
66
|
+
3. **Formatting with Black:**
|
67
|
+
To ensure code consistency, I use Black for formatting. Run `> py -m black .` to format the code and check it with `> py -m black --check .`
|
68
|
+
|
69
|
+
4. **Pushing to GitHub:**
|
70
|
+
After making changes, and the steps above are successful push them to GitHub in a pull request. The GitHub Actions workflow will automatically run `pytest` and `black` to ensure the build is successful.
|
71
|
+
|
72
|
+
|
43
73
|
This project is a community-driven initiative, focusing on the development of free and open-source tools. I believe that Fault Detection and Diagnostics (FDD) should be free and accessible to anyone who wants to try it out, embodying the spirit of open-source philosophy. Additionally, this project aims to serve as an educational resource, empowering individuals to learn about and implement FDD in their own systems. As someone wisely said, `"Knowledge should be shared, not hoarded,"` and this project strives to put that wisdom into practice.
|
44
74
|
|
45
75
|
Got any ideas or questions? Submit a Git issue or start a Discussion...
|
@@ -1,25 +1,48 @@
|
|
1
1
|
open_fdd/__init__.py,sha256=iGj8QTOZJUTE4nNnBiCHXEXsOdV6YvKcGiLrnOusJCg,1411
|
2
2
|
open_fdd/air_handling_unit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
open_fdd/air_handling_unit/faults/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
-
open_fdd/air_handling_unit/faults/fault_condition.py,sha256=
|
5
|
-
open_fdd/air_handling_unit/faults/fault_condition_eight.py,sha256=
|
6
|
-
open_fdd/air_handling_unit/faults/fault_condition_eleven.py,sha256=
|
7
|
-
open_fdd/air_handling_unit/faults/fault_condition_fifteen.py,sha256=
|
8
|
-
open_fdd/air_handling_unit/faults/fault_condition_five.py,sha256=
|
9
|
-
open_fdd/air_handling_unit/faults/fault_condition_four.py,sha256=
|
10
|
-
open_fdd/air_handling_unit/faults/fault_condition_fourteen.py,sha256=
|
11
|
-
open_fdd/air_handling_unit/faults/fault_condition_nine.py,sha256=
|
12
|
-
open_fdd/air_handling_unit/faults/fault_condition_one.py,sha256=
|
13
|
-
open_fdd/air_handling_unit/faults/fault_condition_seven.py,sha256=
|
14
|
-
open_fdd/air_handling_unit/faults/fault_condition_six.py,sha256=
|
15
|
-
open_fdd/air_handling_unit/faults/fault_condition_ten.py,sha256=
|
16
|
-
open_fdd/air_handling_unit/faults/fault_condition_thirteen.py,sha256=
|
17
|
-
open_fdd/air_handling_unit/faults/fault_condition_three.py,sha256=
|
18
|
-
open_fdd/air_handling_unit/faults/fault_condition_twelve.py,sha256=
|
19
|
-
open_fdd/air_handling_unit/faults/fault_condition_two.py,sha256=
|
20
|
-
open_fdd/air_handling_unit/faults/helper_utils.py,sha256=
|
4
|
+
open_fdd/air_handling_unit/faults/fault_condition.py,sha256=laq9s2KnLwez5obRaO0j_6Fpiph6usY7pZ_bOEloPRU,2185
|
5
|
+
open_fdd/air_handling_unit/faults/fault_condition_eight.py,sha256=OlPXWDhaZ6T-pL0VQhfqTEHm5Q5fSLig1Uj8AIHHuZg,3210
|
6
|
+
open_fdd/air_handling_unit/faults/fault_condition_eleven.py,sha256=HW83_Mx3gwPImJBfKHWoSl9nK1wc7LzvpBpmMvS_B6U,3280
|
7
|
+
open_fdd/air_handling_unit/faults/fault_condition_fifteen.py,sha256=N6OiVE8aEKS5RNEuz1C7mBvmZ_YEkClPM99pM3AMGfg,4365
|
8
|
+
open_fdd/air_handling_unit/faults/fault_condition_five.py,sha256=F7sGFIU48hSravtqoYDf6pMHM5IDAoSoYJKChGkQnMo,3150
|
9
|
+
open_fdd/air_handling_unit/faults/fault_condition_four.py,sha256=ZyilsVp_fkZGioXb03TnyN_wenzA_z2qJJ-5v_COO-I,5374
|
10
|
+
open_fdd/air_handling_unit/faults/fault_condition_fourteen.py,sha256=LQT7RExG2jsgLVJy9JkHdwq_Sj6tHJ7R5UJL4B2Bf2w,4005
|
11
|
+
open_fdd/air_handling_unit/faults/fault_condition_nine.py,sha256=mCNAOVFC0KybY8JTwYxBirYff9hkzqx2X8_fsD6NuPw,3375
|
12
|
+
open_fdd/air_handling_unit/faults/fault_condition_one.py,sha256=fxVOgqYhJrrAwKtE0AOo0RgcLiIR5FFpMWRbpb_p7ns,3003
|
13
|
+
open_fdd/air_handling_unit/faults/fault_condition_seven.py,sha256=xnlLf9teERfTTiUiISynBWhke3eIuEM-2gROOYoi53c,2847
|
14
|
+
open_fdd/air_handling_unit/faults/fault_condition_six.py,sha256=3wD9UGx_-vXaqwZZVs2uyBhenECjb3CqL5ProrUgfoc,5513
|
15
|
+
open_fdd/air_handling_unit/faults/fault_condition_ten.py,sha256=1l76_hS1FtnTIWsU01D0s5eWzeRRM7fgVyPmTUyUnq8,3153
|
16
|
+
open_fdd/air_handling_unit/faults/fault_condition_thirteen.py,sha256=IWbCqChHa5hjnKQ_1dyS7lrpiAg3Y5ICuoe7OyjEX6E,3333
|
17
|
+
open_fdd/air_handling_unit/faults/fault_condition_three.py,sha256=TTGe1vScZof0DZJ1jZYla6V8xeHdvDc_uuldS2pODCI,3024
|
18
|
+
open_fdd/air_handling_unit/faults/fault_condition_twelve.py,sha256=gaRg75Mq3RIJSBY8XpLdLd_Nzi7cKZ3o4dnW7w1NYsM,3645
|
19
|
+
open_fdd/air_handling_unit/faults/fault_condition_two.py,sha256=JdlZVXI4Fkb-YCaj44BrGATYHZ-jtysWGU3JOZA7ePs,3019
|
20
|
+
open_fdd/air_handling_unit/faults/helper_utils.py,sha256=9FBPNfOsd_BqP95u4hWelnKeUu_IvSUFhYBfPHtXIZE,13861
|
21
21
|
open_fdd/air_handling_unit/faults/shared_utils.py,sha256=Kp8ZUBhtrh-jU2Q_bbXTpnbVVUAyacp41tDMknY50i4,2252
|
22
|
+
open_fdd/air_handling_unit/images/ahu1_fc1_2024-06_1.jpg,sha256=3dHZyEm_nS4p7-acZprIpZyuU65_IJKk2sixJBf7Ans,444019
|
23
|
+
open_fdd/air_handling_unit/images/ahu1_fc1_2024-06_2.jpg,sha256=kjWCDhRkpxiigl9VJnnMBlETA_FWHZtAn9oqKuQl1M4,392583
|
24
|
+
open_fdd/air_handling_unit/images/example1.jpg,sha256=3dHZyEm_nS4p7-acZprIpZyuU65_IJKk2sixJBf7Ans,444019
|
25
|
+
open_fdd/air_handling_unit/images/example2.jpg,sha256=kjWCDhRkpxiigl9VJnnMBlETA_FWHZtAn9oqKuQl1M4,392583
|
26
|
+
open_fdd/air_handling_unit/images/fc10_definition.png,sha256=wE4tg3BjUDnEfeM1XOYTHAcnl4yUJnkoUrVOipr4Ivo,16603
|
27
|
+
open_fdd/air_handling_unit/images/fc11_definition.png,sha256=Vp_mZxgPGsB0KsEeazwaI3NcgwvLDBBWzutUh8c2Kcg,14534
|
28
|
+
open_fdd/air_handling_unit/images/fc12_definition.png,sha256=CZUukCTaQ2DlDRMk-EdZyqXr_Wne-EKUYuYn_ly82Hc,14254
|
29
|
+
open_fdd/air_handling_unit/images/fc13_definition.png,sha256=qcYnTHtnUwfAaLYFVebcbYtjVSgxSQKqZTi_VwHymgo,16733
|
30
|
+
open_fdd/air_handling_unit/images/fc1_definition.png,sha256=htGaVcaem2CI47bSq_Y6mBdmwbpUHeaQW2oTm4EREbc,8164
|
31
|
+
open_fdd/air_handling_unit/images/fc1_report_screenshot_all.png,sha256=U3IhLL2nJ3k-UF-smPd1FPAGnznBxsrbBkj8B3ZtwyM,184473
|
32
|
+
open_fdd/air_handling_unit/images/fc2_definition.png,sha256=qnFzSrXsj_mwhTq4Zi-NT7kwCTz91HKPGHsh77ov5Fs,9124
|
33
|
+
open_fdd/air_handling_unit/images/fc3_definition.png,sha256=AE0cecNhMiHHsMBQAPWF-cMnLAWK1A27SASeoNoe76w,9118
|
34
|
+
open_fdd/air_handling_unit/images/fc4_definition.png,sha256=66NztKUPH0R3nhNgVnxzN3UgMLhE-6mUKxhnwtkRN90,4245
|
35
|
+
open_fdd/air_handling_unit/images/fc5_definition.png,sha256=xQMxDnStccm8f0KIFL-BpG3yQv4fnl4M9t_9VMVOpWg,14634
|
36
|
+
open_fdd/air_handling_unit/images/fc6_definition.png,sha256=MPV8QcnSnRRNq465dee5Q0Uw5e2ZV_WoIFBVAvYLCVc,20777
|
37
|
+
open_fdd/air_handling_unit/images/fc7_definition.png,sha256=O6bsh0kG4sHeWCDSZuBHjDZ3xDFesSY42yifqhWXMMo,15849
|
38
|
+
open_fdd/air_handling_unit/images/fc8_definition.png,sha256=Cce-_mmZA0QbsbWETwOCr45CJiJLR1vHPQNmB9dQZ6g,19702
|
39
|
+
open_fdd/air_handling_unit/images/fc9_definition.png,sha256=9r7QPViCQ0LItI4NdJsD7VfZjdA4RUZuh08BzxVUnfU,14913
|
40
|
+
open_fdd/air_handling_unit/images/latex_generator.py,sha256=9kotpUZjQrECXiB8ewcvYBLMEVvy9-r1-HnbpPb-Xr0,5976
|
41
|
+
open_fdd/air_handling_unit/images/params.docx,sha256=_mh1G-avi-lsssaW_qH33vGVaYwS_XL_IOQweYpQvAo,157634
|
42
|
+
open_fdd/air_handling_unit/images/params.pdf,sha256=2rmxh2yxuB7x3Q2Jyq0MnFoTJAQqxwIoxGvzzJirWkU,175678
|
43
|
+
open_fdd/air_handling_unit/images/plot_for_repo.png,sha256=u4OIzZUyGk6G4o1AusEERUU6aen4vVX-CGPl14P3qkA,651969
|
22
44
|
open_fdd/air_handling_unit/reports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
45
|
+
open_fdd/air_handling_unit/reports/base_report.py,sha256=oZX6_qXUjuPEHKpF89DhgpPbAkhHeoo3jpDL30u4njs,1778
|
23
46
|
open_fdd/air_handling_unit/reports/report_fc1.py,sha256=ZlfTP4Pzv0l0hBHRWmTFMXKWPnuMNW38mHPPD8QW460,4565
|
24
47
|
open_fdd/air_handling_unit/reports/report_fc10.py,sha256=Dgh0L4A-D-VYqTfVcMwhxdw67R-31c24ydtrpJ-gLyU,5179
|
25
48
|
open_fdd/air_handling_unit/reports/report_fc11.py,sha256=fLb004y59i_2LegfGlpgEpEzQadqsCWrJPNLZ6obgqg,5197
|
@@ -32,12 +55,12 @@ open_fdd/air_handling_unit/reports/report_fc3.py,sha256=xyGjwYxJU2kveVJHLzAM3T_M
|
|
32
55
|
open_fdd/air_handling_unit/reports/report_fc4.py,sha256=0PpPwPnzeUZZybad04IslroBoCcIseDGq5it389wx9s,6052
|
33
56
|
open_fdd/air_handling_unit/reports/report_fc5.py,sha256=welqsYh9TzIfpbdl3i9pvpaDWTsz_rnFbem6lXvz5K0,5699
|
34
57
|
open_fdd/air_handling_unit/reports/report_fc6.py,sha256=R-2OONOZS1ZFLkUBv0syrZ7XjrR0TSwI1Wu70opTVeM,6042
|
35
|
-
open_fdd/air_handling_unit/reports/report_fc7.py,sha256=
|
58
|
+
open_fdd/air_handling_unit/reports/report_fc7.py,sha256=5j9IAEgmjMqSbpQcStCJZB46TmRPtVSDKnGUutSeVxs,5327
|
36
59
|
open_fdd/air_handling_unit/reports/report_fc8.py,sha256=3jZPq2piethtqly1faSc8hk0aFCbQe2Y0RMNv3DFzpk,5057
|
37
60
|
open_fdd/air_handling_unit/reports/report_fc9.py,sha256=hJbYMYnwptVSEI2NVdnV3Ads-h_9Hl4oFD1HDDLZWHQ,4909
|
38
61
|
open_fdd/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
39
62
|
open_fdd/tests/ahu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
40
|
-
open_fdd/tests/ahu/test_ahu_fc1.py,sha256=
|
63
|
+
open_fdd/tests/ahu/test_ahu_fc1.py,sha256=bBi3PLAqlHmLngox23Co-Q9uBK515g2rUVYLGrJ2nSY,5457
|
41
64
|
open_fdd/tests/ahu/test_ahu_fc10.py,sha256=eJ3msPdgkXwYRJOb6mGDaIZBDJfXhyVFAyr27DVwagY,4597
|
42
65
|
open_fdd/tests/ahu/test_ahu_fc11.py,sha256=uMLAQ2o-m8czAh7q6xzKlrmGd9m6SGjIfvd4hswOD9E,4746
|
43
66
|
open_fdd/tests/ahu/test_ahu_fc12.py,sha256=KedYWmVSwb8b-0TZYdC16ysELGHOIsI_xd2va-SqBgg,5871
|
@@ -46,14 +69,14 @@ open_fdd/tests/ahu/test_ahu_fc14.py,sha256=SlnQF37K73tgfUtp1bQl0nH46YV5aByzonUNX
|
|
46
69
|
open_fdd/tests/ahu/test_ahu_fc15.py,sha256=jQGgZPbh83q3_oJJVYhobC7KdD-2InbA1zdbsQBlhuc,7685
|
47
70
|
open_fdd/tests/ahu/test_ahu_fc2.py,sha256=3njwLWjzIT6B6RCMgEGqdPvP3kykYwzQTZ9IOgx_BSE,4756
|
48
71
|
open_fdd/tests/ahu/test_ahu_fc3.py,sha256=iFHLdTzyMvDw7lFwl5J4I7omXXwrDh7kIyoXTI1YxmM,4680
|
49
|
-
open_fdd/tests/ahu/test_ahu_fc4.py,sha256=
|
72
|
+
open_fdd/tests/ahu/test_ahu_fc4.py,sha256=a8B3MuFfdxJkWbcz0PtXXk9gnT1dsmBg3N0uG7Rz2KQ,5009
|
50
73
|
open_fdd/tests/ahu/test_ahu_fc5.py,sha256=mEbhX5IlDkMwXPv3jPMlE_v3QJH47qsZIL99_KzV7_U,6559
|
51
74
|
open_fdd/tests/ahu/test_ahu_fc6.py,sha256=M7eHdQexcSDN0CGjnR3bcwk_wbjDxqhJwqg_VjsoGB0,10369
|
52
75
|
open_fdd/tests/ahu/test_ahu_fc7.py,sha256=ughSBHwrergnFsI5ayVaBoWRUMEetFcYQ59CNBNIS1k,2491
|
53
76
|
open_fdd/tests/ahu/test_ahu_fc8.py,sha256=KKnDyclhzxppC4bk2Kj9cguqg53sZ7I7CSqqWexpWdE,4685
|
54
77
|
open_fdd/tests/ahu/test_ahu_fc9.py,sha256=YbO1jZSZD6eAXjQkidjp3TEVCcaL7ADhUsTyKy_jmL0,4817
|
55
|
-
open_fdd-0.1.
|
56
|
-
open_fdd-0.1.
|
57
|
-
open_fdd-0.1.
|
58
|
-
open_fdd-0.1.
|
59
|
-
open_fdd-0.1.
|
78
|
+
open_fdd-0.1.3.dist-info/LICENSE,sha256=eghao_GGx_0gB2Sll3x2vV29knONEzUQKrkaXpX1F7w,1087
|
79
|
+
open_fdd-0.1.3.dist-info/METADATA,sha256=Pb4MNzK2oSGfARayKjTmvInLOxpPWKdhzONJYcyeFEo,6449
|
80
|
+
open_fdd-0.1.3.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
81
|
+
open_fdd-0.1.3.dist-info/top_level.txt,sha256=Q7sB6UB2d8Ch1v_xIsTiNegmgcCXPkwkrxK3ug6VEOs,9
|
82
|
+
open_fdd-0.1.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|