Metadata-Version: 2.1
Name: beam-ds
Version: 0.0.10
Summary: Beam Datascience package
Home-page: https://github.com/mlutils/beamds
Author: Beam Maintainer
Author-email: author@example.com
Project-URL: Bug Tracker, https://github.com/mlutils/beamds/issues
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
License-File: LICENSE

# BeamDS Package (beam data-science)

This BeamDS implementation follows the guide at 
https://packaging.python.org/tutorials/packaging-projects/

prerequisits:

install the build package:
```shell
python -m pip install --upgrade build
```

Packages to install:
```
tqdm, loguru, tensorboard
```

to reinstall the package after updates use:

1. Now run this command from the same directory where pyproject.toml is located:
```shell
python -m build
```
   
2. reinstall the package with pip:
```shell
pip install dist/*.whl --force-reinstall
```








