-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
36 lines (32 loc) · 926 Bytes
/
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
[[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 ./graphql_jwt_oauth2"
format-isort = "isort ./graphql_jwt_oauth2"
lint-black = "black ./graphql_jwt_oauth2 --check --diff"
lint-isort = "isort ./graphql_jwt_oauth2 --check --diff --profile black"
lint-pylint = "pylint ./graphql_jwt_oauth2"
type-check = "mypy ./graphql_jwt_oauth2"
apidoc = "sphinx-apidoc ./graphql_jwt_oauth2 -o ./docs/source"
sphinx = "sphinx-build -c ./docs/source -b markdown ./docs/source ./docs/build"
# PIPENV_DOTENV_LOCATION=$(pwd)/.env.prod