This is a package with basic AI algorithms. This package is used in some subjects at Insper.
To avoid any configuration problems, we recommend creating a virtual environment with python:
python3 -m virtualenv venv
source venv/bin/activate
python -m pip install --upgrade pip
pip install -r requirements.txt
To quit the virtual environment, type deactivate
. If you already have the virtual environment configured then type source venv/bin/activate
.
Change the version attribute in setup.py
and then type:
python setup.py sdist
twine upload dist/*
If you need to upgrade the package, please follow these steps:
- change what you need in the code;
- test it 😄 ;
- change the
setup.py
file. In special, theversion
attribute; - type
python setup.py sdist
twine upload dist/*
pip install aigyminsper