From b7a79462dc814201c09a18e801f932940fa0962b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Phillip=20K=C3=BChne?= Date: Fri, 30 Jun 2023 00:17:44 +0200 Subject: [PATCH] Add pipfile --- .gitignore | 2 +- backend/Pipfile | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 backend/Pipfile diff --git a/.gitignore b/.gitignore index 184e737..61e520e 100644 --- a/.gitignore +++ b/.gitignore @@ -87,7 +87,7 @@ ipython_config.py # However, in case of collaboration, if having platform-specific dependencies or dependencies # having no cross-platform support, pipenv may install dependencies that don't work, or not # install all needed dependencies. -#Pipfile.lock +Pipfile.lock # celery beat schedule file celerybeat-schedule diff --git a/backend/Pipfile b/backend/Pipfile new file mode 100644 index 0000000..d24971b --- /dev/null +++ b/backend/Pipfile @@ -0,0 +1,48 @@ +[[source]] +url = "https://pypi.org/simple" +verify_ssl = true +name = "pypi" + +[packages] +autopep8 = "==2.0.2" +beautifulsoup4 = "==4.12.0" +bs4 = "==0.0.1" +certifi = "==2022.12.7" +charset-normalizer = "==3.1.0" +click = "==8.1.3" +flake8 = "==6.0.0" +flask = "==2.2.3" +flask-basicauth = "==0.2.0" +greenlet = "==2.0.2" +gunicorn = "==20.1.0" +idna = "==3.4" +itsdangerous = "==2.1.2" +jinja2 = "==3.1.2" +mariadb = "==1.1.6" +markupsafe = "==2.1.2" +mccabe = "==0.7.0" +mysql = "==0.0.3" +mysqlclient = "==2.1.1" +numpy = "==1.24.2" +packaging = "==23.0" +pandas = "==1.5.3" +pycodestyle = "==2.10.0" +pyflakes = "==3.0.1" +pymysql = "==1.0.3" +python-dateutil = "==2.8.2" +pytz = "==2023.3" +requests = "==2.28.2" +six = "==1.16.0" +soupsieve = "==2.4" +sqlalchemy = "==2.0.7" +toml = "==0.10.2" +tomli = "==2.0.1" +typing-extensions = "==4.5.0" +urllib3 = "==1.26.15" +werkzeug = "==2.2.3" + +[dev-packages] + +[requires] +python_version = "3.9" +python_full_version = "3.9.17"