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