-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (58 loc) · 1.49 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "drf-exception-dispatcher"
version = "0.1.0"
packages = [
{ include = "exception_dispatcher" },
]
description = "django-rest-framework exception handler build with functools.singledispatch"
authors = ["Łukasz Skarżyński <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/skarzi/drf-exception-dispatcher"
keywords = [
"django",
"django-exceptions",
"django-rest-framework",
"rest-framework-exceptions",
"exceptions",
"exception-handler",
"exception-dispatcher",
"exception-parser",
"singledispatch",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
"Framework :: Django",
]
[tool.poetry.dependencies]
python = "^3.7.0"
djangorestframework = "^3.11.0"
[tool.poetry.dev-dependencies]
# type hinting
mypy = "^0.982"
django-stubs = "^1.7.0"
djangorestframework-stubs = "^1.4.0"
# linters
# python
flake8-pytest-style = "^1.5.1"
flake8-todos = "^0.1.5"
flake8-typing-imports = "^1.12.0"
import-linter = "^1.3.0"
wemake-python-styleguide = "^0.16.1"
yesqa = "^1.4.0"
# other
safety = "^2.3.1"
# tests
pytest = "^7.1.3"
pytest-cov = "^3.0.0"
pytest-deadfixtures = "^2.2.1"
pytest-mock = "^3.10.0"
pytest-randomly = "^3.12.0"
pytest-timeout = "^2.1.0"