From 1e83b786e5974be6e01b4615c8998a8127d8097d Mon Sep 17 00:00:00 2001 From: Luiz Oliveira Date: Mon, 16 Nov 2020 17:08:15 -0300 Subject: [PATCH] included basic packages in setup.py (#5) Signed-off-by: Luiz Oliveira --- requirements.txt | 2 +- setup.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index db9558f..2c219cd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,3 @@ --i https://pypi.org/simple appdirs==1.4.3 atomicwrites==1.3.0 attrs==19.3.0 @@ -21,6 +20,7 @@ mccabe==0.6.1 more-itertools==8.1.0 mypy-extensions==0.4.3 mypy==0.740 +nose==1.3.7 packaging==20.1 pathspec==0.7.0 pluggy==0.13.1 diff --git a/setup.py b/setup.py index d267252..eef2dcf 100644 --- a/setup.py +++ b/setup.py @@ -46,6 +46,9 @@ packages=find_packages(exclude=['tests']), install_requires=[ 'prometheus-client>=0.6.0', + 'APScheduler>=3.6.3', + 'flask>=1.0.0', + 'requests', ], extras_require={ 'flask': ['Flask>=1.0.0'],