Metadata-Version: 2.1
Name: stockdex
Version: 0.1.2
Summary: A package to get stock data from Yahoo Finance
Home-page: https://github.com/ahnazary/stockdex
Author: Amir Nazary
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: pandas==2.0.3
Requires-Dist: beautifulsoup4==4.12.2

# python-template-repo
Python template repository: A ready-to-use template repository with generic Github action workflows, directory structure and files. 

## Setup sphinx documentation

1. Install sphinx requirements (already in requirements.txt)

```bash
pip install -r requirements.txt
```

2 . Create sphinx documentation base files

```bash
sphinx-quickstart         
sphinx-apidoc -o docs src
```

3. Build sphinx documentation

```bash
cd docs
make html
```

or 

```bash
cd docs
sphinx-build docs build    
```
