Metadata-Version: 2.3
Name: tracerec
Version: 0.1.0
Summary: Python package for the creation of recommendation systems based on user traces.
License: MIT
Author: Alex Martínez
Author-email: almtav08@gmail.com
Requires-Python: >=3.8
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Dist: numpy (>=1.23.0)
Requires-Dist: torch (>=2.0.0)
Project-URL: Bug Tracker, https://github.com/almtav08/tracerec/issues
Project-URL: Homepage, https://github.com/almtav08/tracerec
Description-Content-Type: text/markdown

# tracerec

Python package for the creation of recommendation systems based on user traces.

## Inslation

With pip:

```bash
pip install tracerec
```

With Poetry:

```bash
poetry add tracerec
```

## Development

For contributing to the development of this package, you can clone the repository and install the dependencies using Poetry.

```bash
# Clone the repository
git clone https://github.com/almtav08/tracerec.git
cd tracerec

# Install dev dependencies
poetry install
```

## Usage

```python
import tracerec
# ...
```

## License

MIT

