From 1f451309a79ee163bd594d256f5ece5fef81631b Mon Sep 17 00:00:00 2001 From: mlncn Date: Sun, 2 May 2021 18:39:37 -0400 Subject: [PATCH] Add requirements (python) file --- pomodoro_to_harvest.py | 4 ++-- requirements.txt | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 requirements.txt diff --git a/pomodoro_to_harvest.py b/pomodoro_to_harvest.py index befe981..95fb1ee 100644 --- a/pomodoro_to_harvest.py +++ b/pomodoro_to_harvest.py @@ -1,8 +1,8 @@ import pandas as pd import numpy as np -# import matplotlib.pyplot as plt +import settings -timelog = pd.read_csv("timelog-titled.csv") +timelog = pd.read_csv(settings.pomodoro_logfile()) # Dump bad data. The real solution here is to get rid of the damned 'Cancel' # button on the Pomodoro Prompt dialog, but i don't know how to do that, so we diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..fb6c7ed --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +pandas