-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (64 loc) · 1.37 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
66
67
68
[tool.poetry]
name = "django-stomp-debug-callback"
version = "1.0.0"
description = "A simple view to help know what the callback is doing on django-stomp usage"
authors = ["Juntos Somos Mais <labs@juntossomosmais.com.br>"]
readme = "README.md"
license = "MIT"
include = [
"LICENSE",
]
homepage = "https://github.com/juntossomosmais/django-stomp-debug-callback"
repository = "https://github.com/juntossomosmais/django-stomp-debug-callback"
keywords=["django-stomp", "stomp", "django", "development", "django-debug"]
[tool.poetry.dependencies]
python = "^3.7"
django = "*"
django-stomp = "^5.0.0"
[tool.poetry.dev-dependencies]
### Tests Runner
tox = "^3.24.5"
### Pytest: Essentials
pytest = "^7"
pytest-mock = "^3"
pytest-django = "^4"
pytest-cov = "^3"
pytest-env = "^0"
pytest-xdist = "*"
### Pytest: Add-ons
pytest-icdiff = "^0"
pytest-clarity = "^1"
### Format, lint, static type checker, among others
black = "*"
mypy = "^0"
isort = "*"
flake8 = "*"
flake8-bugbear = "*"
autoflake = "^1"
pre-commit = "^2"
types-requests = "*"
[tool.black]
line-length = 120
target_version = ["py37"]
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
| settings.py
)/
)
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"