https://github.com/PyPSA/PyPSA
Raw File
Tip revision: 5a0644dc4b13c783620d1ae1f3ae963013ce7e97 authored by Fabian Neumann on 13 July 2023, 19:57:25 UTC
Merge pull request #681 from PyPSA/prep-v0.25
Tip revision: 5a0644d
__init__.py
# -*- coding: utf-8 -*-
"""
Python for Power Systems Analysis (PyPSA)

Energy system modelling library.
"""

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

__version__ = "0.25.0"

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