-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
59 lines (52 loc) · 1.52 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
[build-system]
requires = [
"setuptools>=61.0",
"setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "django-simple-components"
dynamic = ["version"]
authors = [
{ name="Pavel Kutsenko", email="zebartcoc@gmail.com" },
]
description = "A small package to easily create components inside your templates without saving them in the templates folder."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
"Homepage" = "https://github.com/paqstd-dev/django-simple-components"
"Bug Tracker" = "https://github.com/paqstd-dev/django-simple-components/issues"
[tool.setuptools_scm]
[tool.coverage.run]
omit = [
"manage.py",
"setup.py",
"tests/*"
]
[tool.black]
line-length = 88
target-version = ["py311"]
include = "\\.pyi?$"
skip-string-normalization=true
[tool.isort]
profile = "django"
combine_as_imports = true
include_trailing_comma = true
line_length = 88
multi_line_output = 3
known_first_party = ["config"]