-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (54 loc) · 1.33 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
[tool.poetry]
name = "livecomponents"
version = "1.13.3"
description = "Django Live Components"
readme = "README.md"
homepage = "https://github.com/om-proptech/live-components-sample"
repository = "https://github.com/om-proptech/live-components-sample"
authors = ["Roman Imankulov <[email protected]>"]
packages = [
{ include = "livecomponents" }
]
license = "MIT"
classifiers = [
"Intended Audience :: Developers",
"Private :: Do Not Upload",
]
include = [
"CHANGELOG.md",
"LICENSE",
]
[tool.poetry.dependencies]
python = "~3.11"
django = "^4.1.3"
django-components = "^0.28.3"
django-htmx = "^1.16.0"
pydantic = "^2.4.2"
redis = ">3"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pytest-xdist = "^3.0.2"
pytest-cov = "^4.0.0"
pytest-django = "^4.5.2"
django-environ = "^0.11.2"
pytest-playwright = "^0.4.3"
mkdocs = "^1.6.1"
mkdocs-material = "^9.5.35"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
source = ["tests", "sample"]
[tool.mypy]
python_version = "3.11"
follow_imports = "silent"
scripts_are_modules = true
namespace_packages = true
no_implicit_optional = true
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "project.settings"
pythonpath = "example"
[tool.ruff]
line-length = 88
target-version = "py311"
select = ["E", "F", "C90", "I", "UP"]