SymbolicDSGE 0.1.5__tar.gz

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.
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: SymbolicDSGE
3
+ Version: 0.1.5
4
+ Summary: "A diagnostic symbolic adjustment layer for simple DSGE models.
5
+ Requires-Python: >=3.13
6
+ Description-Content-Type: text/markdown
7
+ Requires-Dist: ipykernel>=7.1.0
8
+ Requires-Dist: linearsolve>=3.6.3
9
+ Requires-Dist: matplotlib>=3.10.7
10
+ Requires-Dist: numba>=0.62.1
11
+ Requires-Dist: numpy>=2.3.5
12
+ Requires-Dist: pandas>=2.3.3
13
+ Requires-Dist: pysr>=1.5.9
14
+ Requires-Dist: pyyaml>=6.0.3
15
+ Requires-Dist: scikit-learn>=1.7.2
16
+ Requires-Dist: scipy>=1.16.3
17
+ Requires-Dist: statsmodels>=0.14.6
18
+ Requires-Dist: sympy>=1.14.0
19
+ Provides-Extra: notebook
20
+ Requires-Dist: ipython>=9.8.0; extra == "notebook"
21
+ Provides-Extra: fred
22
+ Requires-Dist: fredapi>=0.5.2; extra == "fred"
23
+ Requires-Dist: python-dotenv>=1.2.1; extra == "fred"
File without changes
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: SymbolicDSGE
3
+ Version: 0.1.5
4
+ Summary: "A diagnostic symbolic adjustment layer for simple DSGE models.
5
+ Requires-Python: >=3.13
6
+ Description-Content-Type: text/markdown
7
+ Requires-Dist: ipykernel>=7.1.0
8
+ Requires-Dist: linearsolve>=3.6.3
9
+ Requires-Dist: matplotlib>=3.10.7
10
+ Requires-Dist: numba>=0.62.1
11
+ Requires-Dist: numpy>=2.3.5
12
+ Requires-Dist: pandas>=2.3.3
13
+ Requires-Dist: pysr>=1.5.9
14
+ Requires-Dist: pyyaml>=6.0.3
15
+ Requires-Dist: scikit-learn>=1.7.2
16
+ Requires-Dist: scipy>=1.16.3
17
+ Requires-Dist: statsmodels>=0.14.6
18
+ Requires-Dist: sympy>=1.14.0
19
+ Provides-Extra: notebook
20
+ Requires-Dist: ipython>=9.8.0; extra == "notebook"
21
+ Provides-Extra: fred
22
+ Requires-Dist: fredapi>=0.5.2; extra == "fred"
23
+ Requires-Dist: python-dotenv>=1.2.1; extra == "fred"
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ SymbolicDSGE/SymbolicDSGE.egg-info/PKG-INFO
4
+ SymbolicDSGE/SymbolicDSGE.egg-info/SOURCES.txt
5
+ SymbolicDSGE/SymbolicDSGE.egg-info/dependency_links.txt
6
+ SymbolicDSGE/SymbolicDSGE.egg-info/requires.txt
7
+ SymbolicDSGE/SymbolicDSGE.egg-info/top_level.txt
@@ -0,0 +1,19 @@
1
+ ipykernel>=7.1.0
2
+ linearsolve>=3.6.3
3
+ matplotlib>=3.10.7
4
+ numba>=0.62.1
5
+ numpy>=2.3.5
6
+ pandas>=2.3.3
7
+ pysr>=1.5.9
8
+ pyyaml>=6.0.3
9
+ scikit-learn>=1.7.2
10
+ scipy>=1.16.3
11
+ statsmodels>=0.14.6
12
+ sympy>=1.14.0
13
+
14
+ [fred]
15
+ fredapi>=0.5.2
16
+ python-dotenv>=1.2.1
17
+
18
+ [notebook]
19
+ ipython>=9.8.0
@@ -0,0 +1,53 @@
1
+ [project]
2
+ name = "SymbolicDSGE"
3
+ version = "0.1.5"
4
+ description = """"A diagnostic symbolic adjustment layer for simple DSGE models.
5
+ Features a built-in linearized DSGE engine constructed from symbolic expressions.
6
+ Though in currently in development, the library will provide symbolic regression based measurement correction capabilities.
7
+ In addition, a heavily constrained symbolic search for model equation-augmentation is being planned, but may never come to life."""
8
+ readme = "README.md"
9
+ requires-python = ">=3.13"
10
+ dependencies = [
11
+ "ipykernel>=7.1.0",
12
+ "linearsolve>=3.6.3",
13
+ "matplotlib>=3.10.7",
14
+ "numba>=0.62.1",
15
+ "numpy>=2.3.5",
16
+ "pandas>=2.3.3",
17
+ "pysr>=1.5.9",
18
+ "pyyaml>=6.0.3",
19
+ "scikit-learn>=1.7.2",
20
+ "scipy>=1.16.3",
21
+ "statsmodels>=0.14.6",
22
+ "sympy>=1.14.0",
23
+ ]
24
+
25
+ [project.optional-dependencies]
26
+ notebook = [
27
+ "ipython>=9.8.0",
28
+ ]
29
+ fred = [
30
+ "fredapi>=0.5.2",
31
+ "python-dotenv>=1.2.1",
32
+ ]
33
+
34
+ [dependency-groups]
35
+ dev = [
36
+ "black[jupyter]>=25.11.0",
37
+ "mypy>=1.19.0",
38
+ "pre-commit>=4.5.0",
39
+ "types-pyyaml>=6.0.12.20250915",
40
+ "scipy-stubs>=1.16.3.2",
41
+ "pandas-stubs>=2.3.3.251201",
42
+ "matplotlib-stubs>=0.3.11",
43
+ ]
44
+
45
+ [build-system]
46
+ requires = ["setuptools>=65.5.1", "wheel"]
47
+ build-backend = "setuptools.build_meta"
48
+
49
+ [tool.uv.sources]
50
+ SymbolicDSGE = {path = "SymbolicDSGE"}
51
+
52
+ [tool.setuptools.packages.find]
53
+ where = ["SymbolicDSGE"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+