https://github.com/PyPSA/PyPSA
Raw File
Tip revision: 82feb0a602c072499724ab07a1d526da7fdf3ac3 authored by Fabian Neumann on 07 November 2022, 19:17:31 UTC
amend release v0.21.0
Tip revision: 82feb0a
__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.0"

__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