Skip to content

Commit 39eb8cf

Browse files
authored
chore: Added Python Project Dependency Management (#20)
Signed-off-by: Diogo Pereira <diogo.pereira@swirldslabs.com>
1 parent 786a467 commit 39eb8cf

2 files changed

Lines changed: 7 additions & 0 deletions

File tree

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,6 @@ install:
2222
pyenv virtualenv $(PYTHON_VERSION) $(VENV_NAME)
2323
@echo "Setting local pyenv version to $(VENV_NAME)..."
2424
pyenv local $(VENV_NAME)
25+
@echo "Installing project dependencies..."
26+
pip install -r requirements.txt
2527
@echo "Done. Virtualenv $(VENV_NAME) is ready."

requirements.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
fastcore==1.8.1
2+
ghapi==1.0.6
3+
Jinja2==3.1.6
4+
MarkupSafe==3.0.2
5+
packaging==25.0

0 commit comments

Comments
 (0)