-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
37 lines (33 loc) · 1.02 KB
/
Pipfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[dev-packages]
black = "*"
isort = "*"
pylint = "*"
mypy = "*"
types-requests = "*"
django-stubs = {extras = ["compatible-mypy"], version = "*"}
djangorestframework-stubs = {extras = ["compatible-mypy"], version = "*"}
hatch = "*"
[packages]
django = "*"
graphene-django = "*"
requests = "*"
install = "*"
sphinx = "*"
sphinx-markdown-builder = "*"
djangorestframework = "*"
[requires]
python_version = "3.10"
[scripts]
format-black = "black ./graphene_django_extended"
format-isort = "isort ./graphene_django_extended"
lint-black = "black ./graphene_django_extended --check --diff"
lint-isort = "isort ./graphene_django_extended --check --diff --profile black"
lint-pylint = "pylint ./graphene_django_extended"
type-check = "mypy ./graphene_django_extended"
apidoc = "sphinx-apidoc ./graphene_django_extended -o ./docs/source"
sphinx = "sphinx-build -c ./docs/source -b markdown ./docs/source ./docs/build"
# PIPENV_DOTENV_LOCATION=$(pwd)/.env.prod