Metadata-Version: 2.1
Name: focustuner
Version: 0.1.1
Summary: Focus Load Tuner Control Functions in Python
Author: Grace Gomez
License: MIT
License-File: LICENSE

<h1>Load Tuner Library</h1>

This is a locally installable verion of the python Focus Load Tuner Library

<h3>Version History</h3>

0.1.1: Updated README and Authors

0.1.0 : Initial Build. 

<h3>Acknowledgements</h3>

A special thanks to Devon Donahue and Scott Schafer for the initial version of this code written in socket commands.

<h2>Additional Editing and Build instructions</h2>

Activate the virtual environment using:

. venv/activate/bin

You need to have the project packaged to be able to run it in a test mode. the commands are:

python3 -m pip install build
python3 -m build --wheel
pip3 install dist/loadtuner-0.1.0-py3-none-any.whl

and using:

python3 -m unittest discover

to test the code

<h3> Library Creation </h3>
This library was created using instructions form https://medium.com/analytics-vidhya/how-to-create-a-python-library-7d5aea80cc3f
Frankly it was started more than once so there is a high probability there are unnecessary components. It was a valiant effort though. 

try number 2
https://medium.com/@tushar_datascience/creating-a-python-library-a-step-by-step-guide-with-a-simple-example-c87b653b9a4e

python -m build
twine upload dist/* --repository-url https://upload.pypi.org/legacy

Ensure you update the version number

this seems to do it

<h2> Start virtual environment </h2>

python -m venv venv

Activate for windows:

. venv\Scripts\activate

Activate for Mac:

. venv/bin/activate

<
