This repository has been archived by the owner on Dec 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
71 lines (63 loc) · 1.88 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
69
70
71
[tool.poetry]
name = "turbo-django"
version = "0.4.3"
description = "Integrate Hotwire Turbo with Django allowing for a Python-driven dynamic web experience."
authors = [
"Nikita Marchant <[email protected]>",
"Davis Haupt <[email protected]>",
"Bo Lopker <[email protected]>",
"Julian Feinauer <[email protected]>",
"Edgard Pineda <[email protected]>",
"Stephen Mitchell <[email protected]>"
]
readme = "README.md"
license = "MIT"
packages = [
{ include = "turbo" }
]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = "^3.8"
Django = ">=3.2.0"
channels = ">=2.0.0"
[tool.poetry.dev-dependencies]
sphinx-autoapi = "^1.8.1"
alabaster-hotwire = {git = "https://github.com/hotwire-django/sphinx-hotwire-theme.git", rev = "1.0"}
sphinxcontrib-fulltoc = "^1.2.0"
bump2version = "^1.0.1"
pyproject-flake8 = "^0.0.1-alpha.2"
pytest = "^7.1.2"
pytest-django = "^4.5.2"
black = "^22.3.0"
coverage = "^6.3.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.flake8]
max-line-length = 100
max-complexity = 10
exclude = 'doc,migrations'
[tool.black]
line-length = 100
target-version = ['py38']
include = '\.pyi?$'
extend-exclude = 'doc|migrations'
[tool.pytest.ini_options]
addopts=["--tb=short", "--strict", "-ra", "--ignore-glob=experiments"]
pythonpath = ["turbo", "tests"]
DJANGO_SETTINGS_MODULE = 'test_settings'
testpaths = [
"tests"
]