SymbolicDSGE 0.1.0__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.0
4
+ Summary: A diagnostic symbolic adjustment layer for simple DSGE models. Has a built-in DSGE linearized engine and a symbolic discovery to align solved model equations to empirical data by adjusting the model equations.
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.0
4
+ Summary: A diagnostic symbolic adjustment layer for simple DSGE models. Has a built-in DSGE linearized engine and a symbolic discovery to align solved model equations to empirical data by adjusting the model equations.
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,50 @@
1
+ [project]
2
+ name = "SymbolicDSGE"
3
+ version = "0.1.0"
4
+ description = "A diagnostic symbolic adjustment layer for simple DSGE models. Has a built-in DSGE linearized engine and a symbolic discovery to align solved model equations to empirical data by adjusting the model equations."
5
+ readme = "README.md"
6
+ requires-python = ">=3.13"
7
+ dependencies = [
8
+ "ipykernel>=7.1.0",
9
+ "linearsolve>=3.6.3",
10
+ "matplotlib>=3.10.7",
11
+ "numba>=0.62.1",
12
+ "numpy>=2.3.5",
13
+ "pandas>=2.3.3",
14
+ "pysr>=1.5.9",
15
+ "pyyaml>=6.0.3",
16
+ "scikit-learn>=1.7.2",
17
+ "scipy>=1.16.3",
18
+ "statsmodels>=0.14.6",
19
+ "sympy>=1.14.0",
20
+ ]
21
+
22
+ [project.optional-dependencies]
23
+ notebook = [
24
+ "ipython>=9.8.0",
25
+ ]
26
+ fred = [
27
+ "fredapi>=0.5.2",
28
+ "python-dotenv>=1.2.1",
29
+ ]
30
+
31
+ [dependency-groups]
32
+ dev = [
33
+ "black[jupyter]>=25.11.0",
34
+ "mypy>=1.19.0",
35
+ "pre-commit>=4.5.0",
36
+ "types-pyyaml>=6.0.12.20250915",
37
+ "scipy-stubs>=1.16.3.2",
38
+ "pandas-stubs>=2.3.3.251201",
39
+ "matplotlib-stubs>=0.3.11",
40
+ ]
41
+
42
+ [build-system]
43
+ requires = ["setuptools>=65.5.1", "wheel"]
44
+ build-backend = "setuptools.build_meta"
45
+
46
+ [tool.uv.sources]
47
+ SymbolicDSGE = {path = "SymbolicDSGE"}
48
+
49
+ [tool.setuptools.packages.find]
50
+ where = ["SymbolicDSGE"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+