Metadata-Version: 2.1
Name: tompy
Version: 1.0.0
Summary: Python Time Series Library
Author-email: Tom <nanticj@users.noreply.github.com>
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License
Requires-Dist: Bottleneck >=1.3,<1.4
Requires-Dist: atopy >=1.0,<1.1
Requires-Dist: numpy >=1.26,<1.27
Requires-Dist: openpyxl >=3.1,<3.2
Requires-Dist: pandas >=2.2,<2.3
Requires-Dist: scipy >=1.12,<1.13
Requires-Dist: black >=24.2,<24.3 ; extra == "develop"
Requires-Dist: isort >=5.13,<5.14 ; extra == "develop"
Requires-Dist: mypy >=1.9,<1.10 ; extra == "develop"
Requires-Dist: pylint >=3.1,<3.2 ; extra == "develop"
Requires-Dist: pytest >=8.0,<8.1 ; extra == "develop"
Requires-Dist: types-pytz >=2024.1,<2024.2 ; extra == "develop"
Project-URL: Home, https://github.com/nanticj/tompy
Provides-Extra: develop

# tompy
Python Time Series Library

# Install
## conda
```
conda create -n tompy python=3.12
conda activate tompy
pip install flit
```

## code
```
cd PATH_TO_CODE
flit install --deps production
```

## run
```
cd PATH_TO_RUN
conda activate tompy
```

