Added pipenv files to offer a consistent python environment.

Includes Python version, with black and prospector in the dev packages.
This commit is contained in:
Kronk 2023-06-24 23:35:42 +02:00
parent 21e17a294e
commit cb3c17c5db
2 changed files with 522 additions and 0 deletions

13
Pipfile Normal file
View file

@ -0,0 +1,13 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
[dev-packages]
black = "*"
prospector = {extras = ["with_mypy"], version = "*"}
[requires]
python_version = "3.11"