From fa689bb7ba16dd899f258d8a68a1757bb8adb481 Mon Sep 17 00:00:00 2001 From: mknurs Date: Fri, 12 Aug 2022 19:53:44 +0200 Subject: [PATCH] move to pipenv --- .gitignore | 2 +- Pipfile | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 Pipfile diff --git a/.gitignore b/.gitignore index 68bc17f..b58e201 100644 --- a/.gitignore +++ b/.gitignore @@ -92,7 +92,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 # poetry # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. diff --git a/Pipfile b/Pipfile new file mode 100644 index 0000000..2578aa4 --- /dev/null +++ b/Pipfile @@ -0,0 +1,17 @@ +[[source]] +url = "https://pypi.org/simple" +verify_ssl = true +name = "pypi" + +[packages] +flask = "*" +pymysql = "*" +sqlalchemy = "*" +numpy = "*" +pyncclient = "*" +python-magic = "*" + +[dev-packages] + +[requires] +python_version = "3.10"