-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
126 lines (103 loc) · 2.29 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
version = "1.16.2"
name = "lona"
description = "Write responsive web apps in full python"
authors = [
{ name="Florian Scherf", email="mail@florianscherf.de" },
]
license = { file="LICENSE.txt" }
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: AsyncIO",
"Framework :: Django",
"Framework :: Pytest",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: JavaScript",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
requires-python = ">=3.8"
dependencies = [
'aiohttp>=3,<4',
'watchfiles',
'jinja2',
'rlpython',
'typing-extensions',
]
[project.optional-dependencies]
packaging = [
"build",
"twine",
]
dev = [
"tox",
]
test = [
"aiohttp>=3,<4",
"jinja2",
"rlpython",
"typing-extensions",
"coverage==7.6.1",
"pytest==8.3.3",
"pytest-aiohttp==1.0.5",
"pytest-mock==3.14.0",
"pytest-timeout==2.3.1",
"playwright==1.45.0",
]
lint = [
"aiohttp>=3,<4",
"jinja2",
"rlpython",
"typing-extensions",
"coverage",
"flake8==7.1.1",
"flake8-2020==1.8.1",
"flake8-bugbear==24.8.19",
"flake8-commas==4.0.0",
"flake8-comprehensions==3.15.0",
"flake8-length==0.3.1",
"flake8-logging-format==2024.24.12",
"flake8-mutable==1.2.0",
"flake8-noqa==1.4.0",
"flake8-pytest-style==2.0.0",
"flake8-quotes==3.4.0",
"flake8-use-fstring==1.4",
"mypy==1.11.2",
"isort==5.13.2",
"pytest==8.3.3",
]
[project.urls]
"Homepage" = "https://lona-web.org"
"Repository" = "https://github.com/lona-web-org/lona"
"Bug Tracker" = "https://github.com/lona-web-org/lona/issues"
[project.entry-points.pytest11]
lona = "lona.pytest"
[tool.setuptools]
include-package-data = true
script-files = [
"bin/lona",
]
[tool.setuptools.packages.find]
include = ['lona*']
[tool.setuptools.package-data]
"lona.client" = ["**"]
"lona.client2" = ["**"]
"lona.static" = ["**"]
"lona.templates" = ["**"]
"lona.html.nodes" = ["**"]
[tool.setuptools.exclude-package-data]
"*" = [
".*",
"~*",
"*.swp",
"*.pyc",
]