Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ auth.cfg
*.pkl
build/
test/fixtures/cassettes/*.json
pyenv/
9 changes: 9 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
iso8601==2.1.0
mockito==1.5.0
pytest==8.3.1
python-dateutil==2.9.0.post0
pytz==2022.1
requests==2.32.3
todoist_api_python==2.1.5
tzlocal==5.2
vcrpy==6.0.1
14 changes: 14 additions & 0 deletions scripts/setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash
# Setup repo

# Create symlink
ln -s ~/.config/auth.cfg source/auth.cfg

# Create a virtual environment
python3 -m venv pyenv

# Activate the virtual environment (MacOS/Linux)
source pyenv/bin/activate

# Install dependencies
pip install -r requirements.txt
Loading