Add requirements (python) file

This commit is contained in:
mlncn 2021-05-02 18:39:37 -04:00
parent 6180d04bc5
commit 1f451309a7
2 changed files with 3 additions and 2 deletions

View file

@ -1,8 +1,8 @@
import pandas as pd import pandas as pd
import numpy as np 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' # 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 # button on the Pomodoro Prompt dialog, but i don't know how to do that, so we

1
requirements.txt Normal file
View file

@ -0,0 +1 @@
pandas