[[source]]            
url = "https://pypi.org/simple"
verify_ssl = true     
name = "pypi"

[dev-packages]
black = "*"
isort = "*"
pylint = "*"
mypy = "*"
types-requests = "*"

[packages]
django = "*"
graphene-django = "*"
django-graphql-jwt = "*"
django-stubs = {extras = ["compatible-mypy"], version = "*"}
requests = "*"
pip = "*"
install = "*"
sphinx = "*"
sphinx-markdown-builder = "*"

[requires]
python_version = "3.9"

[scripts]
format-black = "black ./src"
format-isort = "isort ./src"
lint-black = "black ./src --check --diff"
lint-isort = "isort ./src --check --diff --profile black"
lint-pylint = "pylint ./src"
type-check = "mypy ./src"
apidoc = "sphinx-apidoc ./src -o ./docs/source"
sphinx = "sphinx-build -c ./docs/source -b markdown ./docs/source ./docs/build"
# PIPENV_DOTENV_LOCATION=$(pwd)/.env.prod
