https://github.com/PyPSA/PyPSA
Raw File
Tip revision: 8d3889d0d7f28d7f2519c8f1931ba5d3824a4eb4 authored by Fabian Hofmann on 17 January 2023, 15:43:08 UTC
Merge branch 'master' into py311
Tip revision: 8d3889d
__init__.py
# -*- coding: utf-8 -*-


"""
Python for Power Systems Analysis (PyPSA)

Grid calculation library.
"""

from pypsa import (
    components,
    contingency,
    descriptors,
    examples,
    geo,
    io,
    linopf,
    linopt,
    networkclustering,
    opf,
    opt,
    optimization,
    pf,
    plot,
)
from pypsa.components import Network, SubNetwork

__version__ = "0.21.3"

__author__ = (
    "PyPSA Developers, see https://pypsa.readthedocs.io/en/latest/developers.html"
)
__copyright__ = (
    "Copyright 2015-2022 PyPSA Developers, see https://pypsa.readthedocs.io/en/latest/developers.html, "
    "MIT License"
)
back to top