Metadata-Version: 2.4
Name: candlestix
Version: 2.0.5
Summary: Library to get candlesticks info
Home-page: https://github.com/sharmaak/candlestix
Author: Amit Kumar Sharma
Author-email: amit.official@gmail.com
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: upstox-python-sdk>=2.4.0
Requires-Dist: pandas
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# candlestix
Python package to fetch candlesticks data for stocks. Focussed on Indian stocks. 

## Build
* Before you build, please ensure you update the project version in `{project-root}/setup.py`
  * The field is `setup -> version`
* To build, run the script `./build.sh` from **project root directory**
  * The build script will automatically delete the following build directories in project root
    * build/
    * dist/
    * candlestix.egg-info/
  * Next, it builds the project using `python3 -m build --wheel`

## Build and Install
* To install run `./build.sh -i` or `./build.sh --install`
* To verify, run `pip list | grep candlestix`

## Uninstall 
- To uninstall, run `pip uninstall candlestix`
- Verify `pip list | grep candlestix`

## Upload 
To upload to PyPi
`twine upload dist/*`

To install twine
`pip install twine`
