add stuff about package
to build in a vertual enviroment:
py -m venv myenv
myenv\Scripts\activate
Then install build with pip now that the environment is built:
pip install build
Next build the dashwerks package:
py -m build
Finally install package:
pip install dist\dashwerks-0.0.1-py3-none-any.whl
Written with StackEdit.