-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (39 loc) · 1.13 KB
/
pyproject.toml
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
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "blueprint_api"
version = "0.1.0"
description = ""
authors = [
"Tom Camp <[email protected]>"
]
[tool.poetry.dependencies]
python = "~3.10"
Django = "^4.1"
psycopg2-binary = "^2.9.3"
gunicorn = "^20.1.0"
djangorestframework = "^3.14.0"
django-cors-headers = "^3.12.0"
whitenoise = "^6.1.0"
django-guardian = "^2.4.0"
pathlib = "^1.0.1"
jsonschema = "^4.16.0"
django-filter = "^22.1"
pydantic = "^1.9.2"
requests = "^2.28.1"
django-rest-swagger = "^2.2.0"
drf-yasg = "^1.21.4"
types-pytz = "^2022.6.0.1"
[tool.poetry.dev-dependencies]
pylint = "^2.15.3"
pylint-django = "^2.5.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# Pylint config
[tool.pylint.main]
recursive = true
load-plugins = ["pylint_django"]
ignore = ["migrations/*", "manage.py"]
[tool.pylint.format]
max-line-length = 120
[tool.pylint."messages control"]
disable = ["missing-module-docstring", "missing-class-docstring", "missing-function-docstring", "django-not-configured", "unspecified-encoding", "inconsistent-return-statements", "duplicate-code", "import-outside-toplevel", "too-few-public-methods"]