forked from whitespy/django-node-assets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 1.19 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name="django-node-assets"
version = "0.9.14"
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
]
[project.optional-dependencies]
dev = [
"black",
"build",
"flake8",
"isort",
"twine",
]
[project.urls]
GitHub = "https://github.com/whitespy/django-node-assets"
[tool.isort]
profile = "black"