Metadata-Version: 2.3
Name: lecrapaud
Version: 0.1.0
Summary: Framework for machine and deep learning, with regression, classification and time series analysis
License: Apache License
Author: Pierre H. Gallet
Requires-Python: ==3.12.*
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: backoff (>=2.2.1)
Requires-Dist: category-encoders (>=2.8.1)
Requires-Dist: celery (>=5.5.1)
Requires-Dist: curl-cffi (>=0.11.1)
Requires-Dist: deep-translator (>=1.11.4)
Requires-Dist: degiro-connector (>=3.0.26)
Requires-Dist: fake-useragent (>=2.1.0)
Requires-Dist: ftfy (>=6.3.1)
Requires-Dist: honeybadger (>=0.21)
Requires-Dist: joblib (>=1.4.2)
Requires-Dist: keras (>=3.9.0)
Requires-Dist: keras-tcn (>=3.1.2)
Requires-Dist: lightgbm (>=4.6.0)
Requires-Dist: matplotlib (>=3.10.1)
Requires-Dist: mlxtend (>=0.23.4)
Requires-Dist: numpy (>=2.1.3)
Requires-Dist: openai (>=1.86.0)
Requires-Dist: pandas (>=2.2.3)
Requires-Dist: pandas-market-calendars (>=4.6.1)
Requires-Dist: playwright (>=1.52.0)
Requires-Dist: pydantic (>=2.10.6)
Requires-Dist: python-dotenv (>=1.0.1)
Requires-Dist: pytz (>=2025.1)
Requires-Dist: ratelimit (>=2.2.1)
Requires-Dist: scikit-learn (>=1.6.1)
Requires-Dist: scipy (>=1.15.2)
Requires-Dist: seaborn (>=0.13.2)
Requires-Dist: sentence-transformers (>=3.4.1)
Requires-Dist: sqlalchemy (>=2.0.39)
Requires-Dist: tensorboardx (>=2.6.2.2)
Requires-Dist: tensorflow (>=2.19.0)
Requires-Dist: tf-keras (>=2.19.0)
Requires-Dist: tiktoken (>=0.9.0)
Requires-Dist: tqdm (>=4.67.1)
Requires-Dist: xgboost (>=3.0.0)
Requires-Dist: yahoo-fin (>=0.8.9.1)
Requires-Dist: yfinance (>=0.2.55)
Description-Content-Type: text/markdown

# Stock

## Overview

## Project description

## Quick Start

1. Create environment

```sh
$ pip install virtualenv
$ python -m venv .venv
$ source .venv/bin/activate
```

2. Install dependencies

```sh
$ pip install -r requirements.txt
$ pip freeze > requirements.txt
```

3. Deactivate virtualenv (if needed)

```sh
$ deactivate
```

## Reminders for Github usage

1. Creating Github repository

```sh
$ brew install gh
$ gh auth login
$ gh repo create
```

2. Initializing git and first commit to distant repository

```sh
$ git init
$ git add .
$ git commit -m 'first commit'
$ git remote add origin <YOUR_REPO_URL>
$ git push -u origin master
```

3. use conventional commits
https://www.conventionalcommits.org/en/v1.0.0/#summary


***

Pierre Gallet © 2024
