openmc-data 2.2.12__py3-none-any.whl → 2.3.0__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.
openmc_data/_version.py CHANGED
@@ -1,8 +1,13 @@
1
- # file generated by setuptools_scm
1
+ # file generated by setuptools-scm
2
2
  # don't change, don't track in version control
3
+
4
+ __all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
5
+
3
6
  TYPE_CHECKING = False
4
7
  if TYPE_CHECKING:
5
- from typing import Tuple, Union
8
+ from typing import Tuple
9
+ from typing import Union
10
+
6
11
  VERSION_TUPLE = Tuple[Union[int, str], ...]
7
12
  else:
8
13
  VERSION_TUPLE = object
@@ -12,5 +17,5 @@ __version__: str
12
17
  __version_tuple__: VERSION_TUPLE
13
18
  version_tuple: VERSION_TUPLE
14
19
 
15
- __version__ = version = '2.2.12'
16
- __version_tuple__ = version_tuple = (2, 2, 12)
20
+ __version__ = version = '2.3.0'
21
+ __version_tuple__ = version_tuple = (2, 3, 0)
@@ -38,18 +38,19 @@ parser.add_argument(
38
38
  "-r",
39
39
  "--release",
40
40
  choices=["b7.1", "b8.0"],
41
- default="b7.1",
41
+ default="b8.0",
42
42
  help="The nuclear data library release version. The currently supported "
43
- "options are b7.1 and b8.0",
43
+ "options are b7.1 and b8.0.",
44
44
  )
45
45
  parser.add_argument(
46
46
  "-b",
47
47
  "--branching_ratios",
48
- choices=["None", "SFR", "PWR"],
49
- default="SFR",
48
+ choices=["None", "SFR", "PWR", "FNS"],
49
+ default="FNS",
50
50
  help="The nuclear data library release version. The currently supported "
51
51
  "options are b7.1 and b8.0 with branching ratio options of None, SFR "
52
- "or PWR",
52
+ "(sodium fast reactor), PWR (pressurized water reactor) or FNS "
53
+ "(fusion neutron source)",
53
54
  )
54
55
 
55
56
  parser.set_defaults()
openmc_data/urls_xml.py CHANGED
@@ -32,6 +32,11 @@ all_chain_release_details = {
32
32
  "chain": {
33
33
  "url": "https://github.com/openmc-data-storage/openmc_data/raw/main/src/openmc_data/depletion/chain_endf_b8.0_pwr.xml"
34
34
  }
35
+ },
36
+ "FNS": {
37
+ "chain": {
38
+ "url": "https://github.com/jbae11/openmc_activator/raw/refs/heads/main/fns_spectrum.chain.xml"
39
+ }
35
40
  }
36
41
  }
37
42
  }
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: openmc_data
3
- Version: 2.2.12
3
+ Version: 2.3.0
4
4
  Summary: A Python package containing a collection of scripts for producing and downloading data for OpenMC
5
5
  Author-email: Jonathan Shimwell <mail@jshimwell.com>
6
6
  License: Copyright (c) 2019-2022 UChicago Argonne LLC and contributors
@@ -35,6 +35,7 @@ Requires-Dist: numpy>=1.21.1
35
35
  Provides-Extra: tests
36
36
  Requires-Dist: pytest; extra == "tests"
37
37
  Requires-Dist: requests; extra == "tests"
38
+ Dynamic: license-file
38
39
 
39
40
  [![test_urls](https://github.com/shimwell/data/actions/workflows/test_urls.yml/badge.svg)](https://github.com/shimwell/data/actions/workflows/test_urls.yml)
40
41
  [![test_package](https://github.com/openmc-data-storage/openmc_data/actions/workflows/test_package.yml/badge.svg)](https://github.com/openmc-data-storage/openmc_data/actions/workflows/test_package.yml)
@@ -1,9 +1,9 @@
1
1
  openmc_data/__init__.py,sha256=fOMSqMJm50askApEA9aDzgevM1QC4S-wyAh5xuLdltY,786
2
- openmc_data/_version.py,sha256=t5tagAyP4PBX_5fnr47YJtRLvpFtoeqnoXKpulQQQMY,413
2
+ openmc_data/_version.py,sha256=U--yqU7RFo8hQQm8oopUGYLkafj4phNIVfkf5HFEal8,511
3
3
  openmc_data/urls.py,sha256=_mS-1DqXB52hE3BSeDBVae5wMh5eTwGAgU7hcRkpUpg,20375
4
4
  openmc_data/urls_chain.py,sha256=YGgGcQGq8LgbWJS8uqoB7xwtmIBY-CljAhxUBcOVivY,3774
5
5
  openmc_data/urls_h5.py,sha256=jg6FezS4p-ltNVMzTLw6QVcOdyCzOaiCap7PqbfYFMY,1292
6
- openmc_data/urls_xml.py,sha256=g08eB9uvAwz_87f1bEBkUbEESjBNcU9U59NGg7zAHso,1421
6
+ openmc_data/urls_xml.py,sha256=oqvZiO4fzxitkHF5b7TsDGcwtQWgels-QoMGQpNqAKQ,1617
7
7
  openmc_data/utils.py,sha256=mmYR2RNRe_GZfFU8WPyAlPIcbnOxF33W0BOI4jV0O70,7498
8
8
  openmc_data/convert/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  openmc_data/convert/convert_endf.py,sha256=6pP4wgaPTrCIK4qxOIp2CacFl-tMhQ0XvjDcWoCcI18,6610
@@ -42,7 +42,7 @@ openmc_data/depletion/tendl2019_nuclides.json,sha256=aiQK-tQOgpnISlXJbSLsIw_5zO-
42
42
  openmc_data/depletion/tendl2021_nuclides.json,sha256=aiQK-tQOgpnISlXJbSLsIw_5zO-n1Wdirs8QPunnerA,6266
43
43
  openmc_data/download/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
44
  openmc_data/download/download_endf.py,sha256=Sl1WkGqoAS1SweBWrySp8yR_nLTTJgeyezyOsChepu8,2845
45
- openmc_data/download/download_endf_chain.py,sha256=O9uK7sC1yhnLzloGTkxIiGPmVt6tW_Hv2101Inblc4Q,1801
45
+ openmc_data/download/download_endf_chain.py,sha256=kfL3YLHbhkhlAH66LzfSLulsGkQhOE5xirs8_MF-yV0,1900
46
46
  openmc_data/download/download_tendl.py,sha256=Ku1cHcmWXX93LT9s-Grcn-SoFHbqxw7T0zNDUD9Kjgs,2839
47
47
  openmc_data/generate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
48
  openmc_data/generate/generate_cendl.py,sha256=naeFyC99lLXutl6y9n4qebgMc-k2gMt9XC9kb_jL1HQ,6223
@@ -56,9 +56,9 @@ openmc_data/other/convert_tendl_rand.py,sha256=F3fq4vQ0kin_FjwAhZm8HP8GzQsk-1gYf
56
56
  openmc_data/other/make_compton.py,sha256=xsY4fLHWceiRA8tUBVavlZ1TbIDk5HKgikWytEqq6vE,2466
57
57
  openmc_data/other/make_stopping_powers.py,sha256=4Qy9L6VAHm5sMLrDadWX-xS8TSeT-QTiNHDXmZIcT7I,1956
58
58
  openmc_data/other/sample_sandy.py,sha256=uwmZk_XZ59VJOLYqp8cOCruW45qTKzlbeuBwXB6Fk1c,6184
59
- openmc_data-2.2.12.dist-info/LICENSE,sha256=T8b4ZA1twIAqilf_sxR250dAe8AdFhM3k6hqEE0TzBs,1086
60
- openmc_data-2.2.12.dist-info/METADATA,sha256=08ZaDKbT93b-CHxPSyCxuoCrynfZt7eZM3qtRbKa76E,9090
61
- openmc_data-2.2.12.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
62
- openmc_data-2.2.12.dist-info/entry_points.txt,sha256=H1l5rLT4viSg8fkiiv__vdcWvv8iJC8knU5Oz3gBCC4,1795
63
- openmc_data-2.2.12.dist-info/top_level.txt,sha256=ORU-aSVgJUNjwtVsqnZjP4tvU3QUZZpa-XF90ZnE4MQ,12
64
- openmc_data-2.2.12.dist-info/RECORD,,
59
+ openmc_data-2.3.0.dist-info/licenses/LICENSE,sha256=T8b4ZA1twIAqilf_sxR250dAe8AdFhM3k6hqEE0TzBs,1086
60
+ openmc_data-2.3.0.dist-info/METADATA,sha256=hQccblewHGXlK8aKVHCndBff9Tm3IhtG9DtP8-d895k,9111
61
+ openmc_data-2.3.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
62
+ openmc_data-2.3.0.dist-info/entry_points.txt,sha256=H1l5rLT4viSg8fkiiv__vdcWvv8iJC8knU5Oz3gBCC4,1795
63
+ openmc_data-2.3.0.dist-info/top_level.txt,sha256=ORU-aSVgJUNjwtVsqnZjP4tvU3QUZZpa-XF90ZnE4MQ,12
64
+ openmc_data-2.3.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5