We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78735a0 commit bcd3d28Copy full SHA for bcd3d28
.gitignore
@@ -3,3 +3,4 @@ auth.cfg
3
*.pkl
4
build/
5
test/fixtures/cassettes/*.json
6
+pyenv/
requirements.txt
@@ -0,0 +1,9 @@
1
+iso8601==2.1.0
2
+mockito==1.5.0
+pytest==8.3.1
+python-dateutil==2.9.0.post0
+pytz==2022.1
+requests==2.32.3
7
+todoist_api_python==2.1.5
8
+tzlocal==5.2
9
+vcrpy==6.0.1
scripts/setup.sh
@@ -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
10
+# Activate the virtual environment (MacOS/Linux)
11
+source pyenv/bin/activate
12
13
+# Install dependencies
14
+pip install -r requirements.txt
0 commit comments