-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
45 lines (39 loc) · 1.03 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
description = "HTTP Frontend as a django app for argus-server using HTMx"
name = "argus-htmx-frontend"
readme = "README.rst"
authors = [{name = "Hanne Moa", email = "[email protected]"}]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Programming Language :: Python :: 3 :: Only",
"Environment :: Web Environment",
]
dynamic = ["version"]
dependencies = [
"argus-server>=1.25.0",
"django-htmx",
"django-widget-tweaks==1.5.0",
"social-auth-core>=4.1",
"social-auth-app-django>=5.0",
]
[project.urls]
Github = "https://github.com/Uninett/argus-htmx-frontend"
[project.optional-dependencies]
docs = ["sphinx"]
[tool.flit.module]
name = "argus_htmx"
[tool.ruff]
line-length = 120
output-format = "full"
[tool.djlint]
profile="django"
indent = 2
ignore="H006"