-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (82 loc) · 2.15 KB
/
pyproject.toml
File metadata and controls
88 lines (82 loc) · 2.15 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name="django-node-assets"
dynamic = ["version"]
description = "The Django application that allows to install and serve assets via Node.js package manager infrastructure."
readme = "README.rst"
license = { file = "LICENSE.txt" }
authors = [
{ name = "Andrey Butenko", email = "whitespysoftware@gmail.com" },
]
keywords=[
"django",
"assets",
"staticfiles",
"Node.js",
"npm",
"package.json",
]
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
]
[project.optional-dependencies]
dev = [
"build",
"ruff",
"twine",
]
[project.urls]
GitHub = "https://github.com/whitespy/django-node-assets"
[tool.setuptools.dynamic]
version = {attr = "django_node_assets.__version__"}
[tool.ruff.lint]
select = [
"A", # flake8-builtins
"ARG", # flake8-unused-arguments
"B", # flake8-bugbear
"BLE", # flake8-blind-except
"C4", # flake8-comprehensions
"C90", # McCabe cyclomatic complexity
"E", # pycodestyle (Error)
"F", # Pyflakes
"FLY", # flynt
"FURB", # refurb
"I", # isort
"INT", # flake8-gettext
"ISC", # flake8-implicit-str-concat
"N", # pep8-naming
"PERF", # Perflint
"PIE", # flake8-pie
"PL", # Pylint
"Q", # flake8-quotes
"RET", # flake8-return
"RSE", # flake8-raise
"S", # flake8-bandit
"SIM", # flake8-simplify
"SLF", # flake8-self
"SLOT", # flake8-slots
"T20", # flake8-print
"UP", # pyupgrade
"W", # pycodestyle (Warning)
]
ignore = [
"A002",
"ARG002",
"S404",
]
[tool.ruff.lint.isort]
known-first-party = ["django_node_assets"]