dwind 0.3.1__py3-none-any.whl → 0.3.2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dwind
3
- Version: 0.3.1
3
+ Version: 0.3.2
4
4
  Summary: Distributed Wind Generation Model
5
5
  Author-email: Jane Lockshin <jane.lockshin@nrel.gov>, Paritosh Das <paritosh.das@nrel.gov>, Rob Hammond <rob.hammond@nrel.gov>
6
6
  Project-URL: source, https://github.com/NREL/dwind
@@ -33,6 +33,7 @@ Requires-Dist: pyarrow==17
33
33
  Requires-Dist: fastparquet
34
34
  Requires-Dist: h5pyd
35
35
  Requires-Dist: typer
36
+ Requires-Dist: rich
36
37
  Requires-Dist: tomli>=1.1.0; python_version < "3.11"
37
38
  Provides-Extra: dev
38
39
  Requires-Dist: pre-commit; extra == "dev"
@@ -0,0 +1,28 @@
1
+ dwind/__init__.py,sha256=KNd3RypDyojvbMmJPXohTXa1fuqpL_4qbqDYxUqdp40,57
2
+ dwind/btm_sizing.py,sha256=S1QxmUgTVMGxnDtmOeJv2jpfQp1GBAG8WuH4PMRFvhA,5009
3
+ dwind/config.py,sha256=EuIc5pGjdBzma5qVebp2C3pft8wdZglQxzjh3yo6TJA,8756
4
+ dwind/helper.py,sha256=BCYnZYq1aKUZZ5FBEw69Et4nEspG7l7p3X4Qb0VOkV8,6285
5
+ dwind/loader.py,sha256=-E2LYkAkXx30BwDdGmQ_pMtAUVLYaoe8zQ6BxkdCBMk,2294
6
+ dwind/main.py,sha256=Vrv9MbNkFQSHxhdfw0wjnE5LZu0OmztJEU17OVqKHfQ,514
7
+ dwind/model.py,sha256=L6M7hnkAxiGMYoJRwNj6cF28hBGPT_mnvWa9oIEB7cg,22167
8
+ dwind/mp.py,sha256=afL1IfnV9-aXbR1Hrl6hRG22WtDJSEjXEUt-fYUdKwo,8423
9
+ dwind/resource.py,sha256=t2aFL9VCobIIpXMk8i4kyQYqsyEeej4V0STZcvG9xKc,10385
10
+ dwind/run.py,sha256=fdxBBKEHEh9wXgJ3EtXCx1VI-wOSsfHiHQCz1I3DJu0,10015
11
+ dwind/scenarios.py,sha256=QKzGNmvRAkVZQL_leX7TWO5CD8HKwfzCoUwAcDxS_aE,6513
12
+ dwind/valuation.py,sha256=CHQkU0myVdmse-21rr4fD_tCpXATgJ7Odl-hOkpvaXI,67937
13
+ dwind/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ dwind/cli/collect.py,sha256=hYGgwy0rW25arur-2XcdMhpErp9W5MJgd-eYZvZQPNE,3210
15
+ dwind/cli/debug.py,sha256=Mev72RKphMi8oCYm3by-rlp-iKpWVcMCllUzAx4Igao,4478
16
+ dwind/cli/run.py,sha256=Zou4MFGpNNO7zqw1Km3kmahcpjWqCX938L0npnr9yDk,9129
17
+ dwind/cli/utils.py,sha256=e1R9XfULMotbZXJvlqlgVQ3nFr_wqBD5QPenzD5-nwM,5687
18
+ dwind/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ dwind/utils/array.py,sha256=_iWC_IH8oD-Sb6Ezz6pS9A17pfcqx51U7eoTimqiY7c,3682
20
+ dwind/utils/hpc.py,sha256=E3D7q5fiWPGdE5oKK2kBzCQhNoPEENhs_bGHbWxi-jI,4860
21
+ dwind/utils/loader.py,sha256=eC7RVofPHeCnW28d8taP8SBG7gPAgC0QJvox3qfGgvA,2447
22
+ dwind/utils/progress.py,sha256=Q3RR58BG1LUCD6VHucA3ruBL2wyVUSnrCpejGWjeJEM,1985
23
+ dwind-0.3.2.dist-info/licenses/LICENSE.txt,sha256=a6siYqaIG9I77f9adAqiWPBgyL-MGjAorTMa5c1YtUY,1536
24
+ dwind-0.3.2.dist-info/METADATA,sha256=Dr56jACxkb6BAxieEIsOHjOzGzW4jJ3T2YRFyQcHwaM,6953
25
+ dwind-0.3.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
26
+ dwind-0.3.2.dist-info/entry_points.txt,sha256=DOVAlTYbfTjuOjJF74nex__Exs62-huie__RTiGh7eo,41
27
+ dwind-0.3.2.dist-info/top_level.txt,sha256=fj_esaS-KV1YSmx7yCUoXFiRJ0dHx34B876svoE7NGE,6
28
+ dwind-0.3.2.dist-info/RECORD,,
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ dwind = dwind.main:app
@@ -1,20 +0,0 @@
1
- dwind/__init__.py,sha256=hm8U4Yhz8PoEl1YZ0kyeQoX41q5S4MGWH0iUa7EjjT4,57
2
- dwind/btm_sizing.py,sha256=SJJWV2ZVT5UapnRWDwUc6owjDwVOu8QxiMLR8BCPdeI,5037
3
- dwind/config.py,sha256=k-O4qNjj1YDb8ViqEZ9DKmANs-JLEVSskJ7WCLBpsZ4,4165
4
- dwind/helper.py,sha256=BCYnZYq1aKUZZ5FBEw69Et4nEspG7l7p3X4Qb0VOkV8,6285
5
- dwind/loader.py,sha256=-E2LYkAkXx30BwDdGmQ_pMtAUVLYaoe8zQ6BxkdCBMk,2294
6
- dwind/model.py,sha256=oS78wG9WedOAEQvt0WawHliZcgJTjWnGeHSeElhpyKY,18541
7
- dwind/mp.py,sha256=HzHgO8tVd5we03DtwAPv43K_c-HdppVThkvdtqNS_PE,8579
8
- dwind/resource.py,sha256=jo5FakoN4HI569RxU1JG3eH08lXvLmfuyx4IT2Qpcz4,6834
9
- dwind/run.py,sha256=fdxBBKEHEh9wXgJ3EtXCx1VI-wOSsfHiHQCz1I3DJu0,10015
10
- dwind/scenarios.py,sha256=-gKfGxaeCsknBADr_uRbfpiHg-46aHGrXtDSD4jeYo8,5104
11
- dwind/valuation.py,sha256=71q2WV77XkfBI25U6_PR32pHVwB-_OUvDzT9wniF0O8,60909
12
- dwind/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
- dwind/utils/array.py,sha256=BCYnZYq1aKUZZ5FBEw69Et4nEspG7l7p3X4Qb0VOkV8,6285
14
- dwind/utils/hpc.py,sha256=90ZdBFYXGQE_b4KwvW9D0VXGycLGLpuAf2EvKI9o9uc,3340
15
- dwind-0.3.1.dist-info/licenses/LICENSE.txt,sha256=a6siYqaIG9I77f9adAqiWPBgyL-MGjAorTMa5c1YtUY,1536
16
- dwind-0.3.1.dist-info/METADATA,sha256=2XVOAwj10_ThOuvlAnB7RA47-SA_SbdPGCxN_6-G14w,6933
17
- dwind-0.3.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
18
- dwind-0.3.1.dist-info/entry_points.txt,sha256=i0jOR14bQHIF8Ayw9QTQ2F_lWM9spZWApao58FpgFL4,40
19
- dwind-0.3.1.dist-info/top_level.txt,sha256=fj_esaS-KV1YSmx7yCUoXFiRJ0dHx34B876svoE7NGE,6
20
- dwind-0.3.1.dist-info/RECORD,,
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- dwind = dwind.run:app
File without changes