Metadata-Version: 2.4
Name: tssl
Version: 0.1.0
Summary: Funções de sinais e sistemas (Série de Fourier)
Author: Diego
License-Expression: MIT
Keywords: signals,systems,fourier,dsp
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Provides-Extra: plot
Requires-Dist: matplotlib; extra == "plot"
Dynamic: license-file

# tssl

Biblioteca Python com utilitários para sinais e sistemas.

## Instalação (desenvolvimento)

```bash
python -m pip install -e .
```

## Uso

```python
from tssl import fourier_series
```

Para rodar os exemplos com plot:

```bash
python -m pip install -e '.[plot]'
```
