diff --git a/README.md b/README.md index 4fbfa39cd08a97cecddf2daa67b644e01a479238..3c4dc10553746b4aabcdc5f0fa61d809d873f4d2 100644 --- a/README.md +++ b/README.md @@ -3,10 +3,21 @@ [Jupyter Notebook](Extract_Bibliographic_Info_From_Alma.ipynb) for extracting bibliographic information for a given list of unique identifiers. -If you want to try this on your local machine, please take note that you will need to get -the [catalogue](https://labs.onb.ac.at/gitlab/labs-team/catalogue) module by executing +## Setup + +If you want to try this on your local machine, please take note that you will need to +do the following: + +### Get Submodule +Get the [catalogue](https://labs.onb.ac.at/gitlab/labs-team/catalogue) module by executing ``` cd catalogue git submodule init git submodule update ``` + +### Install requirements +After setting up your venv, install the requirements for the project: +``` +pip install -r requirements.txt +``` diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac4b374e0effe7f3b877da9eda17a1a93038a4e5 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +jupyter >= 1.0.0 +openpyxl >= 3.0.1 +pandas >= 0.25.3 +xlrd >= 1.0.0