Metadata-Version: 2.1
Name: searchalg
Version: 0.0.2
Summary: A package for search optimization algorithms.
Author-email: Hatchi Kiqo <hatchikiqo@gmail.com>
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License
Requires-Dist: loguru >= 0.5.3
Requires-Dist: pytest ; extra == "test"
Requires-Dist: pytest-cov ; extra == "test"
Provides-Extra: test

# searchalg

## Development Setup

1. Create and activate virtual environment
    ```
    python -m venv venv
    source venv/bin/activate or venv\Scripts\activate
    ```
2. Install dev-dependencies (editable)
    ```
    flit install
    ```
   

## Publish to Pypi

1. Update the `__version__` in `searchalg/__init__.py`
2. Set `SOURCE_DATE_EPOCH=$(date +%s)` (see [flit reproducible builds](https://flit.readthedocs.io/en/latest/reproducible.html))
3. Update the `CHANGELOG.md` including the value of `SOURCE_DATE_EPOCH` variable
4. Publish the package to pypi: `flit publish`

