Skip to content

discovery-unicamp/hiaac-librep

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

93 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hiaac-librep

Installation

To install librep, you may use:

pip install git+https://github.com/otavioon/hiaac-librep.git

Pip optional dependencies

  • deep-learning: install packages to run deep learning models
  • dev: install development packages
  • docs: install packages to build documentation

Contributing

In order to contribute with librep you may want to:

  1. Clone librep's repository:
git clone https://github.com/otavioon/hiaac-librep.git
  1. Create a python virtual environment and activate it (requires Python >= 3.8):
cd hiaac-librep
python -m venv .librep-venv
source .librep-venv/bin/activate
  1. Install librep development packages, in editable mode
pip install -e .[dev]
  1. Run tests
pytest