rtc-tools 2.7.0.dev2__py3-none-any.whl → 2.8.0a0__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.

Potentially problematic release.


This version of rtc-tools might be problematic. Click here for more details.

Files changed (35) hide show
  1. rtc_tools-2.8.0a0.dist-info/METADATA +279 -0
  2. rtc_tools-2.8.0a0.dist-info/RECORD +52 -0
  3. {rtc_tools-2.7.0.dev2.dist-info → rtc_tools-2.8.0a0.dist-info}/WHEEL +1 -2
  4. rtc_tools-2.8.0a0.dist-info/licenses/AUTHORS +10 -0
  5. rtc_tools-2.8.0a0.dist-info/licenses/COPYING +674 -0
  6. rtctools/__init__.py +2 -4
  7. rtctools/_internal/casadi_helpers.py +13 -5
  8. rtctools/_internal/ensemble_bounds_decorator.py +71 -0
  9. rtctools/data/netcdf.py +16 -15
  10. rtctools/data/pi.py +5 -2
  11. rtctools/data/rtc.py +3 -3
  12. rtctools/optimization/collocated_integrated_optimization_problem.py +75 -29
  13. rtctools/optimization/control_tree_mixin.py +9 -6
  14. rtctools/optimization/csv_lookup_table_mixin.py +5 -3
  15. rtctools/optimization/csv_mixin.py +3 -0
  16. rtctools/optimization/goal_programming_mixin.py +11 -5
  17. rtctools/optimization/goal_programming_mixin_base.py +29 -4
  18. rtctools/optimization/io_mixin.py +11 -5
  19. rtctools/optimization/min_abs_goal_programming_mixin.py +9 -3
  20. rtctools/optimization/modelica_mixin.py +23 -10
  21. rtctools/optimization/optimization_problem.py +53 -11
  22. rtctools/optimization/pi_mixin.py +3 -3
  23. rtctools/optimization/single_pass_goal_programming_mixin.py +9 -3
  24. rtctools/rtctoolsapp.py +15 -13
  25. rtctools/simulation/io_mixin.py +1 -1
  26. rtctools/simulation/pi_mixin.py +3 -3
  27. rtctools/simulation/simulation_problem.py +25 -12
  28. rtctools/util.py +1 -0
  29. rtctools/version.py +51 -0
  30. rtc_tools-2.7.0.dev2.dist-info/METADATA +0 -51
  31. rtc_tools-2.7.0.dev2.dist-info/RECORD +0 -50
  32. rtc_tools-2.7.0.dev2.dist-info/top_level.txt +0 -1
  33. rtctools/_version.py +0 -21
  34. {rtc_tools-2.7.0.dev2.dist-info → rtc_tools-2.8.0a0.dist-info}/entry_points.txt +0 -0
  35. {rtc_tools-2.7.0.dev2.dist-info → rtc_tools-2.8.0a0.dist-info/licenses}/COPYING.LESSER +0 -0
@@ -0,0 +1,279 @@
1
+ Metadata-Version: 2.4
2
+ Name: rtc-tools
3
+ Version: 2.8.0a0
4
+ Summary: Toolbox for control and optimization of water systems.
5
+ Project-URL: Homepage, https://oss.deltares.nl/web/rtc-tools/home
6
+ Project-URL: Download, http://github.com/deltares/rtc-tools/
7
+ Author: Deltares
8
+ Maintainer: Deltares
9
+ License: GNU LESSER GENERAL PUBLIC LICENSE
10
+ Version 3, 29 June 2007
11
+
12
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
13
+ Everyone is permitted to copy and distribute verbatim copies
14
+ of this license document, but changing it is not allowed.
15
+
16
+
17
+ This version of the GNU Lesser General Public License incorporates
18
+ the terms and conditions of version 3 of the GNU General Public
19
+ License, supplemented by the additional permissions listed below.
20
+
21
+ 0. Additional Definitions.
22
+
23
+ As used herein, "this License" refers to version 3 of the GNU Lesser
24
+ General Public License, and the "GNU GPL" refers to version 3 of the GNU
25
+ General Public License.
26
+
27
+ "The Library" refers to a covered work governed by this License,
28
+ other than an Application or a Combined Work as defined below.
29
+
30
+ An "Application" is any work that makes use of an interface provided
31
+ by the Library, but which is not otherwise based on the Library.
32
+ Defining a subclass of a class defined by the Library is deemed a mode
33
+ of using an interface provided by the Library.
34
+
35
+ A "Combined Work" is a work produced by combining or linking an
36
+ Application with the Library. The particular version of the Library
37
+ with which the Combined Work was made is also called the "Linked
38
+ Version".
39
+
40
+ The "Minimal Corresponding Source" for a Combined Work means the
41
+ Corresponding Source for the Combined Work, excluding any source code
42
+ for portions of the Combined Work that, considered in isolation, are
43
+ based on the Application, and not on the Linked Version.
44
+
45
+ The "Corresponding Application Code" for a Combined Work means the
46
+ object code and/or source code for the Application, including any data
47
+ and utility programs needed for reproducing the Combined Work from the
48
+ Application, but excluding the System Libraries of the Combined Work.
49
+
50
+ 1. Exception to Section 3 of the GNU GPL.
51
+
52
+ You may convey a covered work under sections 3 and 4 of this License
53
+ without being bound by section 3 of the GNU GPL.
54
+
55
+ 2. Conveying Modified Versions.
56
+
57
+ If you modify a copy of the Library, and, in your modifications, a
58
+ facility refers to a function or data to be supplied by an Application
59
+ that uses the facility (other than as an argument passed when the
60
+ facility is invoked), then you may convey a copy of the modified
61
+ version:
62
+
63
+ a) under this License, provided that you make a good faith effort to
64
+ ensure that, in the event an Application does not supply the
65
+ function or data, the facility still operates, and performs
66
+ whatever part of its purpose remains meaningful, or
67
+
68
+ b) under the GNU GPL, with none of the additional permissions of
69
+ this License applicable to that copy.
70
+
71
+ 3. Object Code Incorporating Material from Library Header Files.
72
+
73
+ The object code form of an Application may incorporate material from
74
+ a header file that is part of the Library. You may convey such object
75
+ code under terms of your choice, provided that, if the incorporated
76
+ material is not limited to numerical parameters, data structure
77
+ layouts and accessors, or small macros, inline functions and templates
78
+ (ten or fewer lines in length), you do both of the following:
79
+
80
+ a) Give prominent notice with each copy of the object code that the
81
+ Library is used in it and that the Library and its use are
82
+ covered by this License.
83
+
84
+ b) Accompany the object code with a copy of the GNU GPL and this license
85
+ document.
86
+
87
+ 4. Combined Works.
88
+
89
+ You may convey a Combined Work under terms of your choice that,
90
+ taken together, effectively do not restrict modification of the
91
+ portions of the Library contained in the Combined Work and reverse
92
+ engineering for debugging such modifications, if you also do each of
93
+ the following:
94
+
95
+ a) Give prominent notice with each copy of the Combined Work that
96
+ the Library is used in it and that the Library and its use are
97
+ covered by this License.
98
+
99
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
100
+ document.
101
+
102
+ c) For a Combined Work that displays copyright notices during
103
+ execution, include the copyright notice for the Library among
104
+ these notices, as well as a reference directing the user to the
105
+ copies of the GNU GPL and this license document.
106
+
107
+ d) Do one of the following:
108
+
109
+ 0) Convey the Minimal Corresponding Source under the terms of this
110
+ License, and the Corresponding Application Code in a form
111
+ suitable for, and under terms that permit, the user to
112
+ recombine or relink the Application with a modified version of
113
+ the Linked Version to produce a modified Combined Work, in the
114
+ manner specified by section 6 of the GNU GPL for conveying
115
+ Corresponding Source.
116
+
117
+ 1) Use a suitable shared library mechanism for linking with the
118
+ Library. A suitable mechanism is one that (a) uses at run time
119
+ a copy of the Library already present on the user's computer
120
+ system, and (b) will operate properly with a modified version
121
+ of the Library that is interface-compatible with the Linked
122
+ Version.
123
+
124
+ e) Provide Installation Information, but only if you would otherwise
125
+ be required to provide such information under section 6 of the
126
+ GNU GPL, and only to the extent that such information is
127
+ necessary to install and execute a modified version of the
128
+ Combined Work produced by recombining or relinking the
129
+ Application with a modified version of the Linked Version. (If
130
+ you use option 4d0, the Installation Information must accompany
131
+ the Minimal Corresponding Source and Corresponding Application
132
+ Code. If you use option 4d1, you must provide the Installation
133
+ Information in the manner specified by section 6 of the GNU GPL
134
+ for conveying Corresponding Source.)
135
+
136
+ 5. Combined Libraries.
137
+
138
+ You may place library facilities that are a work based on the
139
+ Library side by side in a single library together with other library
140
+ facilities that are not Applications and are not covered by this
141
+ License, and convey such a combined library under terms of your
142
+ choice, if you do both of the following:
143
+
144
+ a) Accompany the combined library with a copy of the same work based
145
+ on the Library, uncombined with any other library facilities,
146
+ conveyed under the terms of this License.
147
+
148
+ b) Give prominent notice with the combined library that part of it
149
+ is a work based on the Library, and explaining where to find the
150
+ accompanying uncombined form of the same work.
151
+
152
+ 6. Revised Versions of the GNU Lesser General Public License.
153
+
154
+ The Free Software Foundation may publish revised and/or new versions
155
+ of the GNU Lesser General Public License from time to time. Such new
156
+ versions will be similar in spirit to the present version, but may
157
+ differ in detail to address new problems or concerns.
158
+
159
+ Each version is given a distinguishing version number. If the
160
+ Library as you received it specifies that a certain numbered version
161
+ of the GNU Lesser General Public License "or any later version"
162
+ applies to it, you have the option of following the terms and
163
+ conditions either of that published version or of any later version
164
+ published by the Free Software Foundation. If the Library as you
165
+ received it does not specify a version number of the GNU Lesser
166
+ General Public License, you may choose any version of the GNU Lesser
167
+ General Public License ever published by the Free Software Foundation.
168
+
169
+ If the Library as you received it specifies that a proxy can decide
170
+ whether future versions of the GNU Lesser General Public License shall
171
+ apply, that proxy's public statement of acceptance of any version is
172
+ permanent authorization for you to choose that version for the
173
+ Library.
174
+ License-File: AUTHORS
175
+ License-File: COPYING
176
+ License-File: COPYING.LESSER
177
+ Classifier: Development Status :: 4 - Beta
178
+ Classifier: Intended Audience :: Information Technology
179
+ Classifier: Intended Audience :: Science/Research
180
+ Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
181
+ Classifier: Operating System :: MacOS
182
+ Classifier: Operating System :: Microsoft :: Windows
183
+ Classifier: Operating System :: POSIX
184
+ Classifier: Operating System :: Unix
185
+ Classifier: Programming Language :: Python
186
+ Classifier: Programming Language :: Python :: 3
187
+ Classifier: Topic :: Scientific/Engineering :: GIS
188
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
189
+ Classifier: Topic :: Scientific/Engineering :: Physics
190
+ Requires-Python: >=3.9
191
+ Requires-Dist: casadi!=3.6.6,<=3.7,>=3.6.3
192
+ Requires-Dist: defusedxml>=0.7.0
193
+ Requires-Dist: importlib-metadata>=5.0.0; python_version < '3.10'
194
+ Requires-Dist: numpy>=1.16.0
195
+ Requires-Dist: pymoca==0.9.*,>=0.9.1
196
+ Requires-Dist: rtc-tools-channel-flow>=1.2.0
197
+ Requires-Dist: scipy>=1.0.0
198
+ Provides-Extra: all
199
+ Requires-Dist: netcdf4; extra == 'all'
200
+ Provides-Extra: netcdf
201
+ Requires-Dist: netcdf4; extra == 'netcdf'
202
+ Description-Content-Type: text/markdown
203
+
204
+ # Deltares RTC-Tools
205
+
206
+ [![Pipeline](https://github.com/deltares/rtc-tools/actions/workflows/rtc-tools.yml/badge.svg)](
207
+ https://github.com/deltares/rtc-tools/actions/workflows/rtc-tools.yml
208
+ )
209
+ [![Coverage](
210
+ https://sonarcloud.io/api/project_badges/measure?project=Deltares_rtc-tools&metric=coverage
211
+ )](https://sonarcloud.io/summary/new_code?id=Deltares_rtc-tools)
212
+
213
+ > **NOTE** The rtc-tools repository has been migrated from gitlab to here;
214
+ see [migration from gitlab](#migration-from-gitlab).
215
+
216
+ RTC-Tools is an open-source Python package for simulation and optimization of cyber-physical systems. It can be used for model-predictive control and operational decision making of water and energy systems. It is developed and maintained by Deltares, in collaboration with partners.
217
+
218
+ RTC-Tools offers the following functionalities:
219
+
220
+ - **Model building using extensible libraries**: Build complex system models using extensible libraries of model components. Modelers can also implement their custom modeling components, for instance, using the [Modelica language](https://modelica.org/language/) or Python script.
221
+
222
+ RTC-Tools can be used with the following libraries and packages for specific applications:
223
+ - [rtc-tools-channel-flow](https://gitlab.com/deltares/rtc-tools-channel-flow): water system models
224
+ - [rtc-tools-hydraulic-structures](https://gitlab.com/deltares/rtc-tools-channel-flow): hydraulic assets, such as weirs and pumps
225
+ - [rtc-tools-heat-network](https://github.com/Nieuwe-Warmte-Nu/rtc-tools-heat-network): heat networks
226
+
227
+ Please note that this list is not exhaustive. Users can also create libraries for other types of applications.
228
+
229
+ - **Running simulations**: Simulate a given model.
230
+
231
+ - **Specifying and solving optimization problems**: Define optimization goals, constraints and decision variables to specify the optimization problem for a given model. RTC-Tools supports both open-source solvers (CBC, HiGHS, Ipopt) and commercial solvers (Gurobi, CPLEX) for solving several types of optimization problems:
232
+
233
+ - **Linear, non-linear**: RTC-Tools supports both linear and non-linear optimization problems.
234
+
235
+ - **Continuous and discrete**: RTC-Tools can handle both continuous and discrete decision variables. This makes it suitable for optimizing systems with a mix of continuous controls (such as pump speeds or gate positions) and discrete decisions (such as on/off states of equipment).
236
+
237
+ - **Goal programming**: When multiple, and perhaps conflicting, objectives are to be considered (e.g., minimize operational costs while minimizing deviations of water levels from a given range), RTC-Tools offers two approaches to multi-objective optimization: The **Weighting Method**, which assigns weights to each objective and optimizes them simultaneously, and the **Lexicographic Goal Programming method**, which optimizes different objectives sequentially.
238
+
239
+ - **Optimization under uncertainty**: RTC-Tools supports the use of ensemble forecasts for optimization under uncertainty. To reduce the size of the optimization problem, ensemble members can be automatically aggregated using a scenario tree reduction method.
240
+
241
+ To streamline the integration with user interfaces and data management systems (such as Delft-FEWS), RTC-Tools supports CSV and XML file formats for reading/writing timeseries and other model parameters. Support for other formats can be implemented using mixins.
242
+
243
+ RTC-Tools uses [CasADi](https://web.casadi.org/) as a symbolic framework for algorithmic differentiation, as well as for interfacing with numerical optimization solvers.
244
+
245
+
246
+ ## Install
247
+
248
+ ```bash
249
+ pip install rtc-tools
250
+ ```
251
+
252
+ ## Documentation
253
+
254
+ Documentation and examples can be found on [readthedocs](https://rtc-tools.readthedocs.io).
255
+
256
+
257
+ ## Migration from GitLab
258
+
259
+ The rtc-tools repository has been migrated from gitlab (https://gitlab.com/deltares/rtc-tools)
260
+ to here.
261
+ To change the git remote url, run
262
+
263
+ `git remote set-url origin https://github.com/Deltares/rtc-tools.git`
264
+
265
+ and
266
+
267
+ `git remote set-url --push origin https://github.com/Deltares/rtc-tools.git`.
268
+
269
+
270
+ ## License
271
+ RTC-Tools is licensed under the **[GNU Lesser General Public License v3.0](COPYING)**,
272
+ and can be used free of charge. Deltares offers support packages for users who require assistance.
273
+
274
+
275
+ ## Acknowledgment
276
+ If you use RTC-Tools in your work, please acknowledge it in any resulting publications.
277
+ You can do this by citing RTC-Tools and providing a link to our
278
+ [website](https://oss.deltares.nl/web/rtc-tools/home) or
279
+ [GitHub repository](https://github.com/deltares/rtc-tools).
@@ -0,0 +1,52 @@
1
+ rtctools/__init__.py,sha256=aRGobIArs86_FwObSU0NSuZb8ND4TB4HVKUhrxF5ni4,68
2
+ rtctools/rtctoolsapp.py,sha256=2RVZI4QQUg0yC6ii4lr50yx1blEfHBFsAgUjLR5pBkA,4336
3
+ rtctools/util.py,sha256=8IGva7xWcAH-9Xcr1LaxUpYoZjF6vbo1eqdNJ9pKgGA,9098
4
+ rtctools/version.py,sha256=xvbTWTq6B21t4hw5bi2hdOVaIBeDBQtqEEHe0kxYZsc,1995
5
+ rtctools/_internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ rtctools/_internal/alias_tools.py,sha256=XuQSAhhFuVtwn0yrAObZWIKPsSF4j2axXRtEmitIFPs,5310
7
+ rtctools/_internal/caching.py,sha256=p4gqSL7kCI7Hff-KjMEP7mhJCQSiU_lYm2MR7E18gBM,905
8
+ rtctools/_internal/casadi_helpers.py,sha256=UcVSBsOs9f8gAGk4s3CQRS7TSE1CIvKt0uhrD4gLwu4,1727
9
+ rtctools/_internal/debug_check_helpers.py,sha256=UgQTEPw4PyR7MbYLewSSWQqTwQj7xr5yUBk820O9Kk4,1084
10
+ rtctools/_internal/ensemble_bounds_decorator.py,sha256=-eMSvkgKQ0Ew3EBDzsikQjIOlEP_iZOpbGGuX8R0F_A,2917
11
+ rtctools/data/__init__.py,sha256=EllgSmCdrlvQZSd1VilvjPaeYJGhY9ErPiQtedmuFoA,157
12
+ rtctools/data/csv.py,sha256=hEpoTH3nhZaAvRN4r-9-nYeAjaFiNDRoiZWg8GxM3yo,5539
13
+ rtctools/data/netcdf.py,sha256=tMs-zcSlOR0HhajUKJVbXGNoi3GeKCM3X4DjuW8FDo8,19130
14
+ rtctools/data/pi.py,sha256=D2r9gaYu6qMpgWRqiWpWPSPJXWgqCVV0bz6ewgM78mc,46701
15
+ rtctools/data/rtc.py,sha256=tYPOzZSFE02bAXX3lgcGR1saoQNIv6oWVWH8CS0dl5Q,9079
16
+ rtctools/data/storage.py,sha256=67J4BRTl0AMEzlKNZ8Xdpy_4cGtwx8Lo_tL2n0G4S9w,13206
17
+ rtctools/data/interpolation/__init__.py,sha256=GBubCIT5mFoSTV-lOk7cpwvZekNMEe5bvqSQJ9HE34M,73
18
+ rtctools/data/interpolation/bspline.py,sha256=qevB842XWCH3fWlWMBqKMy1mw37ust-0YtSnb9PKCEc,948
19
+ rtctools/data/interpolation/bspline1d.py,sha256=HAh7m5xLBuiFKzMzuYEqZX_GmCPChKjV7ynTS6iRZOc,6166
20
+ rtctools/data/interpolation/bspline2d.py,sha256=ScmX0fPDxbUVtj3pbUE0L7UJocqroD_6fUT-4cvdRMc,1693
21
+ rtctools/optimization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ rtctools/optimization/collocated_integrated_optimization_problem.py,sha256=cmcjcrv5EdVcZfAZNB8V-BwPC7M1IJYnalvPaP8BhYo,133037
23
+ rtctools/optimization/control_tree_mixin.py,sha256=6OMvjT5rFvvXU3_O6Uwz8xvBQpRH9d5z4mMOtOQ4-a4,9036
24
+ rtctools/optimization/csv_lookup_table_mixin.py,sha256=TUYAT-u-mzH6HLP0iJHnLBVqV5tWnhYAqDC4Aj17MJg,17399
25
+ rtctools/optimization/csv_mixin.py,sha256=_6iPVK_EJ8PxnukepzkhFtidceucsozRML_DDEycYik,12453
26
+ rtctools/optimization/goal_programming_mixin.py,sha256=GEseE9DNT39eZSKHP83N_pPo0DE_U9loH6Ymqp4XSRQ,33570
27
+ rtctools/optimization/goal_programming_mixin_base.py,sha256=asvPSUZnmpCvRNTHCs-orwjQGBMCOlJZTFtByBVnXUU,45508
28
+ rtctools/optimization/homotopy_mixin.py,sha256=Kh0kMfxB-Fo1FBGW5tPOQk24Xx_Mmw_p0YuSQotdkMU,6905
29
+ rtctools/optimization/initial_state_estimation_mixin.py,sha256=74QYfG-VYYTNVg-kAnCG6QoY3_sUmaID0ideF7bPkkY,3116
30
+ rtctools/optimization/io_mixin.py,sha256=L_afeqWjO722ZI5asN_3ykn-xvcbFO360A6Qqo8H2OA,12145
31
+ rtctools/optimization/linearization_mixin.py,sha256=mG5S7uwvwDydw-eBPyQKnLyKoy08EBjQh25vu97afhY,1049
32
+ rtctools/optimization/linearized_order_goal_programming_mixin.py,sha256=LQ2qpYt0YGLpEoerif4FJ5wwzq16q--27bsRjcqIU5A,9087
33
+ rtctools/optimization/min_abs_goal_programming_mixin.py,sha256=1ZXILToZjni3y6bvDFiruV3s-tocFwv363kNlevXb9M,14282
34
+ rtctools/optimization/modelica_mixin.py,sha256=rl-ZUuH811wqNwQR1-eLrG68uVo2kwwKpj1-oEGSbI0,18329
35
+ rtctools/optimization/netcdf_mixin.py,sha256=-zkXh3sMYE50c3kHsrmUVGWMSFm-0cXQpGrCm0yn-Tc,7563
36
+ rtctools/optimization/optimization_problem.py,sha256=40AzasL_WmXzu97C-GFFuaZtroduGLYaoEGfCQRqlOo,46096
37
+ rtctools/optimization/pi_mixin.py,sha256=G_6RPlXO-IOjqYxNsMZGY4fmnfxVpwN-_T5Ka3rDwK4,11788
38
+ rtctools/optimization/planning_mixin.py,sha256=O_Y74X8xZmaNZR4iYOe7BR06s9hnmcapbuHYHQTBPPQ,724
39
+ rtctools/optimization/single_pass_goal_programming_mixin.py,sha256=4ybHNcrgyI5i8RrVqSd6Xp3riy0j2Vb5JcrkTt9-kUQ,26035
40
+ rtctools/optimization/timeseries.py,sha256=nCrsGCJThBMh9lvngEpbBDa834_QvklVvkxJqwX4a1M,1734
41
+ rtctools/simulation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
+ rtctools/simulation/csv_mixin.py,sha256=rGDUFPsqGHmF0_dWdXeWzWzMpkPmwCNweTBVrwSh31g,6704
43
+ rtctools/simulation/io_mixin.py,sha256=WIKOQxr3fS-aNbgjet9iWoUayuD22zLIYmqlWEqxXHo,6215
44
+ rtctools/simulation/pi_mixin.py,sha256=_TU2DrK2MQqVsyrHBD9W4SDEuot9dYmgTDNiXkDAJfk,9833
45
+ rtctools/simulation/simulation_problem.py,sha256=v5Lk2x-yuVb5s7ne5fFgxONxGniLHTyTR0XRzYRl1fw,50005
46
+ rtc_tools-2.8.0a0.dist-info/METADATA,sha256=4VKSXL7fn9fo0DujkvKxyDzQo3M5EwGhFDWWc2xVVIk,15025
47
+ rtc_tools-2.8.0a0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
48
+ rtc_tools-2.8.0a0.dist-info/entry_points.txt,sha256=DVS8sWf3b9ph9h8srEr6zmQ7ZKGwblwgZgGPZg-jRNQ,150
49
+ rtc_tools-2.8.0a0.dist-info/licenses/AUTHORS,sha256=PlDXG1ipmYrbNMR93XVp4_bcvcz30__pEi7mxvl9TWk,155
50
+ rtc_tools-2.8.0a0.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
51
+ rtc_tools-2.8.0a0.dist-info/licenses/COPYING.LESSER,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
52
+ rtc_tools-2.8.0a0.dist-info/RECORD,,
@@ -1,5 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: hatchling 1.27.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
-
@@ -0,0 +1,10 @@
1
+ Jorn Baayen
2
+ Joris Bentvelsen
3
+ Olav van Duin
4
+ Sjoerd Geevers
5
+ Klaudia Horváth
6
+ Ailbhe Mitchell
7
+ Teresa Piovesan
8
+ Matthijs den Toom
9
+ Jesse VanderWees
10
+ Tjerk Vreeken