-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackages.yml
More file actions
2404 lines (2404 loc) · 72.2 KB
/
packages.yml
File metadata and controls
2404 lines (2404 loc) · 72.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
- package_name: neonutilities
package_description: neonutilities is a package for accessing and wrangling
data generated and published by the National Ecological Observatory
Network.
submitting_author:
name: Claire Lunch
github_username: cklunch
all_current_maintainers:
- name: Claire Lunch
github_username: cklunch
- name: Bridget Hass
github_username: bhass-neon
- name:
github_username: znickerson8
repository_link: https://github.com/NEONScience/NEON-utilities-python
version_submitted: v1.0.1
categories:
- data-retrieval
- data-processing-munging
editor:
name: Julieta Millan
github_username: JuliMillan
eic:
name: Chiara Marmo
github_username: cmarmo
reviewers:
- name: Ethan White
github_username: ethanwhite
- name:
github_username: benjamindonnachie
archive: https://doi.org/10.5281/zenodo.15530180
version_accepted: v1.1.0
date_accepted: 2025-05- 10
created_at: 2024-09-25 21:27:31+00:00
updated_at: 2025-06-11 23:06:08+00:00
closed_at: 2025-05-30 16:31:22+00:00
issue_link: https://github.com/pyOpenSci/software-submission/issues/213
joss:
partners:
gh_meta:
name: NEON-utilities-python
description: Repository for Python package containing data-wrangling
utilities for working with NEON data.
created_at: '2023-08-25'
stargazers_count: 4
watchers_count: 4
open_issues_count: 2
forks_count: 4
documentation: https://neon-utilities-python.readthedocs.io/en/latest/
contrib_count: 5
last_commit: '2025-06-02'
labels:
- 6/pyOS-approved
active: true
- package_name: Solar Data Tools
package_description: Library of tools for analyzing photovoltaic power
time-series data.
submitting_author:
name: Sara Miskovich
github_username: pluflou
all_current_maintainers:
- name: Sara A. Miskovich
github_username: pluflou
- name: Bennet Meyers
github_username: bmeyers
repository_link: https://github.com/slacgismo/solar-data-tools
version_submitted: 1.6.4
categories:
- data-retrieval
- data-extraction
- data-processing-munging
- data-visualization
editor:
name: Silvana Ovaitt
github_username: shirubana
eic:
name: Chiara Marmo
github_username: cmarmo
reviewers:
- name: Jinning Wang
github_username: jinningwang
- name: Echedey Luis
github_username: echedey-ls
- name: Chris Deline
github_username: cdeline
archive:
version_accepted: TBD
date_accepted: '2025-06-13'
created_at: 2024-08-17 06:30:02+00:00
updated_at: 2025-06-14 13:14:48+00:00
closed_at:
issue_link: https://github.com/pyOpenSci/software-submission/issues/210
joss:
partners:
gh_meta:
name: solar-data-tools
description: 'Some data analysis tools for working with historical PV solar
time-series data sets. '
created_at: '2019-02-17'
stargazers_count: 68
watchers_count: 9
open_issues_count: 3
forks_count: 25
documentation: https://solar-data-tools.readthedocs.io
contrib_count: 18
last_commit: '2025-06-13'
labels:
- 6/pyOS-approved
active: true
- package_name: THzTools
package_description: Data analysis software tools for terahertz time-domain
spectroscopy (THz-TDS)
submitting_author:
name: J. Steven Dodge
github_username: jsdodge
all_current_maintainers:
- name: J. Steven Dodge
github_username: jsdodge
repository_link: https://github.com/dodge-research-group/thztools
version_submitted: 0.5.4
categories:
- data-processing-munging
editor:
name: Bane Sullivan
github_username: banesullivan
eic:
name: Chiara Marmo
github_username: cmarmo
reviewers:
- name: Frank Male
github_username: frank1010111
- name:
github_username: Romain-Peretti
archive: https://doi.org/10.5281/zenodo.10100093
version_accepted: 0.5.5
date_accepted: '2024-11-22'
created_at: 2024-08-01 11:54:53+00:00
updated_at: 2025-03-26 06:49:24+00:00
closed_at: 2024-12-03 02:41:20+00:00
issue_link: https://github.com/pyOpenSci/software-submission/issues/209
joss: https://doi.org/10.21105/joss.07542
partners:
gh_meta:
name: thztools
description: Tools for terahertz time-domain spectroscopy (THz-TDS)
created_at: '2022-11-22'
stargazers_count: 18
watchers_count: 2
open_issues_count: 3
forks_count: 10
documentation: https://dodge-research-group.github.io/thztools/
contrib_count: 5
last_commit: '2024-12-03'
labels:
- 6/pyOS-approved
- 9/joss-approved
active: true
- package_name: MontePy
package_description: MontePy is a python library for reading, editing, and
writing MCNP input files.
submitting_author:
name: Micah Gale
github_username: micahgale
all_current_maintainers:
- name: Micah Gale
github_username: micahgale
- name: Travis L.
github_username: tjlaboss
repository_link: https://github.com/idaholab/MontePy
version_submitted: 0.2.10
categories:
- workflow-automation
- scientific-software-wrapper
editor:
name: Kelly L. Rowland
github_username: kellyrowland
eic:
name: Chiara Marmo
github_username: cmarmo
reviewers:
- name: Madicken Munk
github_username: munkm
- name: Joanna Piper Morgan
github_username: jpmorgan98
archive: https://doi.org/10.5281/zenodo.15185506
version_accepted: 0.5.5
date_accepted: '2025-03-19'
created_at: 2024-07-01 21:04:05+00:00
updated_at: 2025-05-20 13:22:25+00:00
closed_at: 2025-04-30 19:12:35+00:00
issue_link: https://github.com/pyOpenSci/software-submission/issues/205
joss: https://joss.theoj.org/papers/10.21105/joss.07951
partners:
gh_meta:
name: MontePy
description: MontePy is the most user friendly Python library (API) to
read, edit, and write MCNP input files.
created_at: '2024-01-09'
stargazers_count: 47
watchers_count: 5
open_issues_count: 115
forks_count: 13
documentation: https://www.montepy.org/
contrib_count: 5
last_commit: '2025-06-06'
labels:
- 6/pyOS-approved
- 9/joss-approved
active: true
- package_name: Great Tables
package_description: Make awesome display tables using Python.
submitting_author:
name: Richard Iannone
github_username: rich-iannone
all_current_maintainers:
- name: Richard Iannone
github_username: rich-iannone
- name: Michael Chow
github_username: machow
repository_link: https://github.com/posit-dev/great-tables
version_submitted: v0.13.0
categories:
- data-visualization
editor:
name: Alex Batisse
github_username: Batalex
eic:
name: Alex Batisse
github_username: Batalex
reviewers:
- name:
github_username: cjbassin
- name: Guillaume Lemaitre
github_username: glemaitre
archive: https://doi.org/10.5281/zenodo.15312934
version_accepted: v0.14.0
date_accepted: '2025-01-03'
created_at: 2024-06-14 19:55:59+00:00
updated_at: 2025-04-30 21:09:27+00:00
closed_at:
issue_link: https://github.com/pyOpenSci/software-submission/issues/202
joss:
partners:
gh_meta:
name: great-tables
description: Make awesome display tables using Python
created_at: '2022-05-06'
stargazers_count: 2319
watchers_count: 15
open_issues_count: 114
forks_count: 91
documentation: https://posit-dev.github.io/great-tables/
contrib_count: 22
last_commit: '2025-06-18'
labels:
- 6/pyOS-approved
- joss-submission-pending
active: true
- package_name: Stingray
package_description: A spectral-timing software package for astrophysical
X-ray (and other) data
submitting_author:
name: Matteo Bachetti
github_username: matteobachetti
all_current_maintainers:
- name: Daniela Huppenkothen
github_username: dhuppenkothen
- name: Guglielmo Mastroserio
github_username: mgullik
- name: John Swinbank
github_username: jdswinbank
- name:
github_username: matteolucchini1
repository_link: https://github.com/stingraysoftware/stingray
version_submitted: '2.1'
categories:
- data-processing-munging
- data-validation-testing
editor:
name: Hans Moritz Günther
github_username: hamogu
eic:
name: Chiara Marmo
github_username: cmarmo
reviewers:
- name: Tom Aldcroft
github_username: taldcroft
- name: Mason Ng
github_username: masonng-astro
archive: https://doi.org/10.5281/zenodo.11383212
version_accepted: '2.1'
date_accepted: '2024-10-01'
created_at: 2024-06-14 12:59:47+00:00
updated_at: 2024-11-23 00:06:34+00:00
closed_at: 2024-11-13 00:03:51+00:00
issue_link: https://github.com/pyOpenSci/software-submission/issues/201
joss: https://joss.theoj.org/papers/10.21105/joss.07389
partners:
- astropy
gh_meta:
name: stingray
description: Anything can happen in the next half hour (including
spectral timing made easy)!
created_at: '2015-09-30'
stargazers_count: 198
watchers_count: 19
open_issues_count: 42
forks_count: 166
documentation: https://stingray.science/stingray
contrib_count: 54
last_commit: '2025-04-08'
labels:
- 6/pyOS-approved
- 9/joss-approved
- astropy
active: true
- package_name: astrodata
package_description: Common interface for astronomical data products.
submitting_author:
name: D.J. Teal
github_username: teald
all_current_maintainers:
- name: Teal
github_username: teald
- name: Chris Simpson
github_username: chris-simpson
- name:
github_username: jehturner
repository_link: https://github.com/GeminiDRSoftware/astrodata
version_submitted: 2.9.2
categories:
- data-extraction
- data-processing-munging
editor:
name: Hans Moritz Günther
github_username: hamogu
eic:
reviewers:
- name: Aarya Patil
github_username: aaryapatil
- name: Matt Craig
github_username: mwcraig
archive: https://zenodo.org/records/14804283
version_accepted: 2.10.1
date_accepted: '2025-02-04'
created_at: 2024-05-13 23:48:03+00:00
updated_at: 2025-04-11 19:09:21+00:00
closed_at: 2025-04-11 19:09:19+00:00
issue_link: https://github.com/pyOpenSci/software-submission/issues/181
joss:
partners:
- astropy
gh_meta:
name: astrodata
description:
created_at: '2023-10-17'
stargazers_count: 1
watchers_count: 2
open_issues_count: 14
forks_count: 2
documentation: https://geminidrsoftware.github.io/astrodata/
contrib_count: 4
last_commit: '2025-04-02'
labels:
- 6/pyOS-approved
- astropy
active: true
- package_name: QuadratiK
package_description: QuadratiK includes test for multivariate normality,
test for uniformity on the sphere, non-parametric two- and k-sample
tests, random generation of points from the Poisson kernel-based density
and clustering algorithm for spherical data.
submitting_author:
name: Raktim Mukhopadhyay
github_username: rmj3197
all_current_maintainers:
- name: Raktim Mukhopadhyay
github_username: rmj3197
- name: Giovanni Saraceno
github_username: giovsaraceno
repository_link: https://github.com/rmj3197/QuadratiK
version_submitted: 1.1.0
categories:
- data-processing-munging
editor:
name: Isabel Zimmerman
github_username: isabelizimm
eic:
name: Alex Batisse
github_username: Batalex
reviewers:
- name: Alyssa Columbus
github_username: acolum
- name: Avik Basu
github_username: ab93
archive: https://zenodo.org/records/14546750
version_accepted: 1.1.2
date_accepted: '2024-12-03'
created_at: 2024-05-13 21:23:44+00:00
updated_at: 2025-03-17 01:23:41+00:00
closed_at: 2025-02-27 20:45:41+00:00
issue_link: https://github.com/pyOpenSci/software-submission/issues/180
joss:
partners:
gh_meta:
name: QuadratiK
description: QuadratiK includes test for multivariate normality, test
for uniformity on the sphere, non-parametric two- and k-sample
tests, random generation of points from the Poisson kernel-based
density and clustering algorithm for spherical data.
created_at: '2024-02-04'
stargazers_count: 3
watchers_count: 2
open_issues_count: 0
forks_count: 0
documentation: https://quadratik.readthedocs.io/
contrib_count: 1
last_commit: '2025-03-09'
labels:
- 6/pyOS-approved
active: true
- package_name: PyPartMC
package_description: Python interface to PartMC aerosol-dynamics Monte-Carlo
simulation package
submitting_author:
name: Sylwester Arabas
github_username: slayoo
all_current_maintainers:
- name: Zach D'Aquino
github_username: zdaq12
- name: Jeffrey Curtis
github_username: jcurtis2
- name: Nicole Riemer
github_username: nriemer
- name: Matthew West
github_username: mwest1066
repository_link: https://github.com/open-atmos/PyPartMC/
version_submitted: v1.2.0
categories:
- scientific-software-wrapper
editor:
name: Chiara Marmo
github_username: cmarmo
eic:
name: Alex Batisse
github_username: Batalex
reviewers:
- name: Simon O'Meara
github_username: simonom
- name: Dan Baston
github_username: dbaston
archive: https://doi.org/10.5281/zenodo.14801138
version_accepted: 1.4.2
date_accepted: '2025-02-12'
created_at: 2024-05-03 18:22:59+00:00
updated_at: 2025-02-17 21:44:56+00:00
closed_at: 2025-02-17 18:52:18+00:00
issue_link: https://github.com/pyOpenSci/software-submission/issues/179
joss:
partners:
gh_meta:
name: PyPartMC
description: Python (and C++) interface to PartMC with Jupyter/Python,
Julia and Matlab examples
created_at: '2021-10-26'
stargazers_count: 29
watchers_count: 5
open_issues_count: 55
forks_count: 14
documentation: https://open-atmos.github.io/PyPartMC/
contrib_count: 9
last_commit: '2025-06-04'
labels:
- 6/pyOS-approved
active: true
- package_name: pooltool
package_description: Pooltool is a general purpose billiards simulator
crafted specifically for science and engineering.
submitting_author:
name: Evan Kiefl
github_username: ekiefl
all_current_maintainers:
- name: Evan Kiefl
github_username: ekiefl
repository_link: https://github.com/ekiefl/pooltool
version_submitted: v0.3.3
categories:
- data-processing-munging
- data-visualization
editor:
name: Chiara Marmo
github_username: cmarmo
eic:
name: Alex Batisse
github_username: Batalex
reviewers:
- name: Sebastiano Tronto
github_username: sebastianotronto
- name: Eliot Robson
github_username: eliotwrobson
archive: https://doi.org/10.5281/zenodo.13824503
version_accepted: 0.4.1
date_accepted: '2024-09-16'
created_at: 2024-04-15 21:44:43+00:00
updated_at: 2024-11-22 01:30:45+00:00
closed_at: 2024-10-01 11:51:34+00:00
issue_link: https://github.com/pyOpenSci/software-submission/issues/173
joss: https://doi.org/10.21105/joss.07301
partners:
gh_meta:
name: pooltool
description: A sandbox billiards game that emphasizes realistic physics
created_at: '2020-04-09'
stargazers_count: 277
watchers_count: 13
open_issues_count: 3
forks_count: 48
documentation: https://pooltool.readthedocs.io
contrib_count: 8
last_commit: '2025-06-02'
labels:
- 6/pyOS-approved
- 9/joss-approved
active: true
- package_name: martini
package_description: MARTINI is a modular package for the creation of
synthetic resolved HI line observations (data cubes) of
smoothed-particle hydrodynamics simulations of galaxies.
submitting_author:
name: Kyle Oman
github_username: kyleaoman
all_current_maintainers:
- name: Kyle Oman
github_username: kyleaoman
repository_link: https://github.com/kyleaoman/martini
version_submitted: 2.0.11 (note JOSS paper is in branch joss-paper, and that
branch is somewhat behind main & 2.0.11)
categories:
- data-processing-munging
editor:
name: Hans Moritz Günther
github_username: hamogu
eic:
name: Isabel Zimmerman
github_username: isabelizimm
reviewers:
- name: Tom Aldcroft
github_username: taldcroft
- name: Michele Delli Veneri
github_username: MicheleDelliVeneri
archive: https://zenodo.org/doi/10.5281/zenodo.11193206
version_accepted: 2.0.15
date_accepted: '2024-06-03'
created_at: 2024-03-06 17:08:29+00:00
updated_at: 2025-01-14 18:42:39+00:00
closed_at: 2024-07-01 15:58:14+00:00
issue_link: https://github.com/pyOpenSci/software-submission/issues/164
joss: https://doi.org/10.21105/joss.06860
partners:
- astropy
gh_meta:
name: martini
description: Mock spatially resolved spectral line observations of
simulated galaxies.
created_at: '2017-10-19'
stargazers_count: 18
watchers_count: 2
open_issues_count: 16
forks_count: 6
documentation: https://martini.readthedocs.io/
contrib_count: 1
last_commit: '2025-05-27'
labels:
- 6/pyOS-approved
- 9/joss-approved
- astropy
active: true
- package_name: ZodiPy
package_description: Zodiacal emission simulations in timestreams or HEALPix
for solar system observers.
submitting_author:
name: Metin San
github_username: metinsa
all_current_maintainers:
- name: Metin San
github_username: metinsa
- name: Duncan Watts
github_username: dncnwtts
- name: Daniel Herman
github_username: hermda02
repository_link: https://github.com/Cosmoglobe/zodipy
version_submitted: v.0.8.5
categories:
- scientific-software-wrapper
editor:
name: Derek Homeier
github_username: dhomeier
eic:
name: Isabel Zimmerman
github_username: isabelizimm
reviewers:
- name: P. L. Lim
github_username: pllim
- name: Leo Singer
github_username: lpsinger
archive: https://doi.org/10.5281/zenodo.10999612
version_accepted: v.0.9.2
date_accepted: '2024-04-21'
created_at: 2024-02-24 12:28:07+00:00
updated_at: 2025-01-14 18:43:28+00:00
closed_at: 2024-05-13 17:38:26+00:00
issue_link: https://github.com/pyOpenSci/software-submission/issues/161
joss: https://joss.theoj.org/papers/10.21105/joss.06648
partners:
- astropy
gh_meta:
name: zodipy
description: 'Astropy-affiliated package for zodiacal light simulations. Maintainers:
@metinsa, @hermda02, @dncnwtts'
created_at: '2021-08-11'
stargazers_count: 11
watchers_count: 2
open_issues_count: 2
forks_count: 10
documentation: https://cosmoglobe.github.io/zodipy/
contrib_count: 8
last_commit: '2025-04-21'
labels:
- 6/pyOS-approved
- 9/joss-approved
- astropy
active: true
- package_name: plot_phylo
package_description: A Python package to plot a phylogenetic tree on an
existing Matplotlib axis.
submitting_author:
name: Katy Brown
github_username: KatyBrown
all_current_maintainers:
- name: Katy Brown
github_username: KatyBrown
repository_link: https://github.com/KatyBrown/plot_phylo
version_submitted: 1.9.0
categories:
- data-visualization
- workflow-automation
editor:
name: C. Titus Brown
github_username: ctb
eic:
name: Isabel Zimmerman
github_username: isabelizimm
reviewers:
- name: Ammar Aziz
github_username: ammaraziz
- name: Jayaram Kancherla
github_username: jkanche
archive: https://doi.org/10.5281/zenodo.13871592
version_accepted: 0.1.11
date_accepted: '2025-01-21'
created_at: 2024-02-22 11:55:59+00:00
updated_at: 2025-03-19 21:22:07+00:00
closed_at: 2025-03-19 21:22:05+00:00
issue_link: https://github.com/pyOpenSci/software-submission/issues/160
joss:
partners:
gh_meta:
name: plot_phylo
description: Python package to plot a phylogenetic tree on an existing
matplotlib axis.
created_at: '2023-12-22'
stargazers_count: 22
watchers_count: 1
open_issues_count: 3
forks_count: 1
documentation: https://plot-phylo.readthedocs.io
contrib_count: 1
last_commit: '2025-03-07'
labels:
- 6/pyOS-approved
active: true
- package_name: PetroFit
package_description: The PetroFit Project is an open-source effort to
develop end-to-end tools for making accurate photometric measurements,
estimating morphological properties, and fitting 2D models to galaxy
images.
submitting_author:
name: Robel Geda
github_username: robelgeda
all_current_maintainers:
- name: Robel Geda
github_username: robelgeda
- name: Steve Crawford
github_username: crawfordsm
repository_link: https://github.com/PetroFit/petrofit
version_submitted: v0.5.0 (will be updated to v1.0.0 after review)
categories:
- data-processing-munging
editor:
name: Derek Homeier
github_username: dhomeier
eic:
name: Isabel Zimmerman
github_username: isabelizimm
reviewers:
- name: Nadia Dencheva
github_username: nden
- name: Kyle Oman
github_username: kyleaoman
archive: https://doi.org/10.5281/zenodo.14962700
version_accepted: '[v0.6.0](https://github.com/PetroFit/petrofit/releases/tag/v0.6.0)'
date_accepted: '2025-02-28'
created_at: 2024-02-16 22:46:47+00:00
updated_at: 2025-05-02 11:04:54+00:00
closed_at: 2025-05-02 11:04:53+00:00
issue_link: https://github.com/pyOpenSci/software-submission/issues/159
joss:
partners:
- astropy
gh_meta:
name: petrofit
description: Python package for calculating Petrosian properties and
fitting galaxy light profiles
created_at: '2021-03-16'
stargazers_count: 28
watchers_count: 2
open_issues_count: 30
forks_count: 7
documentation: https://petrofit.readthedocs.io
contrib_count: 3
last_commit: '2025-03-03'
labels:
- 6/pyOS-approved
- astropy
active: true
- package_name: harmonize-wq
package_description: Standardize, clean, and wrangle Water Quality Portal
data into more analytic-ready formats
submitting_author:
name: Justin Bousquin
github_username: jbousquin
all_current_maintainers:
- name: Justin Bousquin
github_username: jbousquin
repository_link: https://github.com/USEPA/harmonize-wq
version_submitted: 0.4.0
categories:
- data-processing-munging
editor:
name: Alex Batisse
github_username: Batalex
eic:
name: Isabel Zimmerman
github_username: isabelizimm
reviewers:
- name: Romain Caneill
github_username: rcaneill
- name: Jacqui Levy
github_username: jacqui-123
archive: https://doi.org/10.5281/zenodo.13356847
version_accepted: 0.5.0
date_accepted: '2024-08-10'
created_at: 2024-02-08 19:43:03+00:00
updated_at: 2025-02-06 17:12:04+00:00
closed_at: 2025-02-06 17:12:02+00:00
issue_link: https://github.com/pyOpenSci/software-submission/issues/157
joss: https://doi.org/10.21105/joss.07305
partners:
gh_meta:
name: harmonize-wq
description: Standardize, clean, and wrangle Water Quality Portal data
into more analytic-ready formats
created_at: '2022-06-27'
stargazers_count: 17
watchers_count: 5
open_issues_count: 22
forks_count: 7
documentation: https://usepa.github.io/harmonize-wq/
contrib_count: 5
last_commit: '2025-02-06'
labels:
- 6/pyOS-approved
- 9/joss-approved
active: true
- package_name: xnemogcm
package_description: Interface to open NEMO global circulation model output
dataset with xarray and create a xgcm grid.
submitting_author:
name: Romain Caneill
github_username: rcaneill
all_current_maintainers:
- name: Romain Caneill
github_username: rcaneill
repository_link: https://github.com/rcaneill/xnemogcm/
version_submitted: 0.4.2
categories:
- data-processing-munging
editor:
name: Filipe
github_username: ocefpaf
eic:
reviewers:
- name: Paige Martin
github_username: paigem
- name: Callum Rollo
github_username: callumrollo
archive: https://doi.org/10.5281/zenodo.10973846
version_accepted: 0.4.3
date_accepted: '2024-04-02'
created_at: 2024-01-06 12:33:45+00:00
updated_at: 2024-05-02 16:32:24+00:00
closed_at: 2024-04-18 10:12:09+00:00
issue_link: https://github.com/pyOpenSci/software-submission/issues/155
joss:
partners:
gh_meta:
name: xnemogcm
description: Interface to open NEMO global circulation model output
dataset with xarray and create a xgcm grid.
created_at: '2020-01-24'
stargazers_count: 22
watchers_count: 1
open_issues_count: 1
forks_count: 11
documentation: https://xnemogcm.readthedocs.io/
contrib_count: 6
last_commit: '2025-01-20'
labels:
- 6/pyOS-approved
active: true
- package_name: automata
package_description: A Python library for simulating finite automata,
pushdown automata, and Turing machines.
submitting_author:
name: Eliot Robson
github_username: eliotwrobson
all_current_maintainers:
- name: Eliot Robson
github_username: eliotwrobson
- name: Caleb Evans
github_username: caleb531
repository_link: https://github.com/caleb531/automata
version_submitted: v8.2.0
categories:
- data-processing-munging
- data-visualization
editor:
name: Jonny Saunders
github_username: sneakers-the-rat
eic:
name: Isabel Zimmerman
github_username: isabelizimm
reviewers:
- name: Phil Dong
github_username: phildong
- name: Iris Young
github_username: irisdyoung
- name: Nima Sarajpoor
github_username: NimaSarajpoor
archive: https://doi.org/10.5281/zenodo.10864492
version_accepted: 8.4.0
([repo](https://github.com/caleb531/automata/releases/tag/v8.4.0),
[pypi](https://pypi.org/project/automata-lib/8.4.0/),
[archive](https://zenodo.org/records/12594180))
date_accepted: '2024-06-29'
created_at: 2023-12-31 02:23:34+00:00
updated_at: 2024-08-01 19:14:28+00:00
closed_at: 2024-08-01 19:14:27+00:00
issue_link: https://github.com/pyOpenSci/software-submission/issues/152
joss:
partners:
gh_meta:
name: automata
description: A Python library for simulating finite automata, pushdown
automata, and Turing machines
created_at: '2016-02-16'
stargazers_count: 380
watchers_count: 8
open_issues_count: 11
forks_count: 68
documentation: https://caleb531.github.io/automata/
contrib_count: 17
last_commit: '2025-02-27'
labels:
- 6/pyOS-approved
active: true
- package_name: SLEPLET
package_description: Slepian Scale-Discretised Wavelets in Python
submitting_author:
name: Patrick J. Roddy
github_username: paddyroddy
all_current_maintainers:
- name: Patrick J. Roddy
github_username: paddyroddy
repository_link: https://github.com/astro-informatics/sleplet
version_submitted: '[v1.4.4](https://pypi.org/project/sleplet/1.4.4)'
categories:
- data-processing-munging
- data-visualization
editor:
name: Szymon Moliński
github_username: SimonMolinsky
eic:
name: David Nicholson
github_username: NickleDave
reviewers:
- name: Shannon Quinn
github_username: magsol
- name: Jakub Tomasz Gnyp
github_username: gnypit
archive: https://doi.org/10.5281/zenodo.7268074
version_accepted: 1.4.7
date_accepted: '2024-05-21'
created_at: 2023-11-16 01:32:15+00:00
updated_at: 2025-01-14 18:45:55+00:00
closed_at: 2024-06-06 08:29:04+00:00
issue_link: https://github.com/pyOpenSci/software-submission/issues/149
joss: https://joss.theoj.org/papers/10.21105/joss.05221
partners:
gh_meta:
name: sleplet
description: Slepian Scale-Discretised Wavelets in Python
created_at: '2020-10-21'
stargazers_count: 9
watchers_count: 3
open_issues_count: 3
forks_count: 1
documentation: https://pypi.org/project/sleplet
contrib_count: 5
last_commit: '2025-06-04'
labels:
- 6/pyOS-approved
- 9/joss-approved
active: true
- package_name: sunpy
package_description: Python for Solar Physics
submitting_author:
name: Nabil Freij
github_username: nabobalis
all_current_maintainers:
- name: Steven Christe
github_username: ehsteve
- name: David Pérez-Suárez
github_username: dpshelio
- name: Jack Ireland
github_username: wafels
- name: Albert Y. Shih
github_username: ayshih
- name: Stuart Mumford
github_username: Cadair
- name: Nabil Freij
github_username: nabobalis
- name: David Stansby
github_username: dstansby
- name: DanRyanIrish
github_username: DanRyanIrish
- name: Will Barnes
github_username: wtbarnes
- name: Conor MacBride
github_username: ConorMacBride
- name: Alasdair Wilson
github_username: alasdairwilson
- name: Laura Hayes
github_username: hayesla
- name: Vishnunarayan K I
github_username: vn-ki
repository_link: https://github.com/sunpy/sunpy
version_submitted: 5.0.1
categories:
- data-retrieval
- data-extraction
- data-processing-munging
- data-visualization
editor:
name: Chiara Marmo
github_username: cmarmo
eic:
name: Isabel Zimmerman
github_username: isabelizimm
reviewers:
- name: Septaris/Babouh
github_username: Septaris
- name: Sean Kelly
github_username: nutjob4life
archive: https://doi.org/10.5281/zenodo.8384174
version_accepted: 5.1.1
date_accepted: '2024-01-18'
created_at: 2023-10-30 18:45:06+00:00
updated_at: 2025-01-14 18:46:34+00:00
closed_at: 2024-01-27 23:05:39+00:00
issue_link: https://github.com/pyOpenSci/software-submission/issues/147
joss: https://joss.theoj.org/papers/10.21105/joss.01832
partners:
gh_meta:
name: sunpy
description: SunPy - Python for Solar Physics
created_at: '2011-08-06'
stargazers_count: 955
watchers_count: 49
open_issues_count: 254