Metadata-Version: 2.1
Name: pysddp
Version: 0.0.80
Summary: PySDDP package
Home-page: https://github.com/AndreMarcato/PySDDP
Author: Andre Marcato
Author-email: andre.marcato@ufjf.edu.br
License: MIT
Keywords: pysddp
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3
Description-Content-Type: text/x-rst
License-File: LICENSE.txt
Requires-Dist: numpy
Requires-Dist: matplotlib
Requires-Dist: cvxopt
Requires-Dist: pyswarm
Requires-Dist: scipy
Requires-Dist: typing
Requires-Dist: pandas

PySDDP
###################
Python package applied to the planning of the operation of energy systems in the medium term horizon. This package also has classes applied to rain-to-flow

USAGE
###################

from PySDDP import sistema

EXAMPLE
###################

from PySDDP import sistema

q = sistema.PySDDP('pmo/')

Classroom
###################
from PySDDP import sistema

q = sistema.Classroom()

q.sistema["DGer"]["Nr_Disc"] = 41

resultado_pdd41 = q.pdd(0, imprime=False)

resultado_plu = q.pl_unico(0, imprime=False)

resultado_pddd = q.pddd(0, imprime=False)

DOCUMENTATION
###################

O contrato completo de leitura, edição e persistência do CONFHD está
documentado em ``docs/confhd.rst``.

DEPLOY SCRIPT
###################

Para publicar uma nova versão do pacote, você pode usar o script de deploy localizado em ``deploy.sh``.

No PowerShell, execute:

.. code-block:: powershell

   .\deploy.ps1 0.0.66 "Release 0.0.66"

O script:

- atualiza a versão em ``setup.py``;
- cria um commit;
- faz push para o repositório remoto;
- cria e envia a tag com o mesmo número da versão;
- dispara o fluxo de deploy no CircleCI.

Se você quiser que o script pergunte a versão, execute:

.. code-block:: powershell

   bash ./deploy.sh


