aateg / tatu-re

Tatu Recommendation Engine
1 stars 1 forks source link

Add setuptools #60

Closed aateg closed 1 year ago

aateg commented 1 year ago

Setuptools is a python library that allows us to put our package in the pip standards. This makes it easier to do several things but mainly the installation of packages and version handling. In the future also allows the creation of scripts for the package that will be useful, for example, scripts to run the model.

Now the dependencies of the project are written in the pyproject.toml file and one can install the project with its dependencies by executing pip install -e .

This is something I wanted to learn and I used this opportunity to implement it.