yancc 0.0.1__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.
yancc/__init__.py ADDED
@@ -0,0 +1,24 @@
1
+ """yancc: Yet Another NeoClassical Code."""
2
+
3
+ from jax import config
4
+
5
+ from . import (
6
+ _version,
7
+ collisions,
8
+ field,
9
+ krylov,
10
+ linalg,
11
+ misc,
12
+ multigrid,
13
+ smoothers,
14
+ species,
15
+ trajectories,
16
+ velocity_grids,
17
+ )
18
+ from .solve import solve_dke, solve_mdke
19
+
20
+ # lots of big and small numbers that will over/underflow in 32bit so
21
+ # we set this here to ensure we don't get nans elsewhere.
22
+ config.update("jax_enable_x64", True)
23
+
24
+ __version__ = _version.get_versions()["version"]
yancc/_version.py ADDED
@@ -0,0 +1,21 @@
1
+
2
+ # This file was generated by 'versioneer.py' (0.29) from
3
+ # revision-control system data, or from the parent directory name of an
4
+ # unpacked source archive. Distribution tarballs contain a pre-generated copy
5
+ # of this file.
6
+
7
+ import json
8
+
9
+ version_json = '''
10
+ {
11
+ "date": "2026-07-22T21:26:50-0400",
12
+ "dirty": false,
13
+ "error": null,
14
+ "full-revisionid": "6f399a21ecfcc03008e466bb09811a330321b9be",
15
+ "version": "0.0.1"
16
+ }
17
+ ''' # END VERSION_JSON
18
+
19
+
20
+ def get_versions():
21
+ return json.loads(version_json)