""" | |
FRED Economic Data Analysis Package | |
A comprehensive tool for collecting, analyzing, and visualizing | |
Federal Reserve Economic Data (FRED) using the FRED API. | |
Author: Economic Data Team | |
Version: 1.0.0 | |
""" | |
__version__ = "1.0.0" | |
__author__ = "Economic Data Team" | |
__email__ = "[email protected]" | |
# Don't import anything here to avoid circular imports | |
# Modules should be imported directly when needed | |
__all__ = [] | |