Migrate to pipenv based dependencz management

This commit is contained in:
2024-03-06 20:36:22 +01:00
parent 79925de8cd
commit 08a9f7bd0e
3 changed files with 743 additions and 32 deletions

25
Pipfile Normal file
View File

@@ -0,0 +1,25 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
beautifulsoup4 = "*"
coloredlogs = "*"
flask = "*"
tabulate = "*"
colorama = "*"
[dev-packages]
black = "*"
debugpy = "*"
flake8 = "*"
pytest = "*"
pytest-cov = "*"
pytest-mock = "*"
pydocstyle = "*"
pylint = "*"
pynsist = "*"
[requires]
python_version = "3.11"