-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (50 loc) · 1.08 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
[tool.black]
line-length = 88
target_version = ['py38']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
)/
'''
[tool.poetry]
name = "django-channels-handlers"
version = "0.2.3"
description = "Django Channels, without the Pain"
license = "MIT"
authors = ["Josh Smith <[email protected]>"]
readme = "README.md"
repository = "https://github.com/joshua-s/django-channels-handlers"
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Intended Audience :: Developers",
]
packages = [
{ include = "channels_handlers" },
]
[tool.poetry.dependencies]
python = ">=3.7"
[tool.poetry.dev-dependencies]
pre-commit = "^2.7.1"
black = "^20.8b1"
pytest = "^6.0.2"
pytest-cov = "^2.10.1"
tox = "^3.20.0"
tox-travis = "^0.12"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"