forked from christophehenry/dj-importmap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (60 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (60 loc) · 1.73 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
69
70
71
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">=3.10"
name = "dj-importmap"
dynamic = ["version"]
description = "Integrate HTML importmaps with Django for modern web development"
readme = "README.md"
license-files = ["LICENSE"]
authors = [
{ name = "Christophe Henry", email = "contact@c-henry.fr" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = ["django>=4.2"]
[project.optional-dependencies]
dev = [
"pre-commit",
"uv",
"ruff",
]
[project.urls]
Homepage = "https://github.com/betagouv/dj-importmap"
Documentation = "https://github.com/betagouv/dj-importmap/blob/main/README.md"
Repository = "https://github.com/betagouv/dj-importmap"
Issues = "https://github.com/betagouv/dj-importmap/issues"
Changelog = "https://github.com/betagouv/dj-importmap/blob/main/CHANGELOG.md"
[tool.setuptools.dynamic]
version = { attr = "importmap.__version__" }
[tool.setuptools.packages.find]
include = ["importmap*"]
[tool.ruff]
line-length = 100
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint.isort]
force-sort-within-sections = true
section-order = [
"future",
"standard-library",
"django",
"third-party",
"first-party",
"local-folder",
"testing"
]