forked from NilCoalescing/djangochannelsrestframework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.42 KB
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 = "wcc-python-sdk-channelsrest"
version = "0.1.0"
description = "Django Channels Rest Framework provides a DRF like interface for building channels-v3 websocket consumers."
authors = ["Your Name <you@example.com>"]
readme = "README.rst"
license = "MIT"
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
packages = [
{ include = "djangochannelsrestframework" },
]
[tool.poetry.dependencies]
python = "^3.8"
django = ">=2.2"
djangorestframework = ">=3.12.4"
channels = ">=3.0.3"
[tool.poetry.group.dev.dependencies]
black = ">=22.3.0"
pytest = ">=6.2.5"
pytest-asyncio = "^0.21.0"
pytest-django = "^4.5.2"
sphinx = ">=4.3.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py39']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''
[tool.isort]
profile = "black"