-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.19 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
[build-system]
requires = ["flit_core >=2,<4", "xxhash"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
dist-name = "django-hmin"
module = "hmin"
author = "Denis Anikin"
author-email = "ad@xfenix.ru"
description-file = "README.md"
requires-python=">=3.7"
home-page = "https://github.com/xfenix/django-hmin/"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.flit.sdist]
exclude = ["django-for-development/"]
[tool.flit.metadata.urls]
Documentation = "https://github.com/xfenix/django-hmin/#django-hmin"
[tool.isort]
line_length = 120
multi_line_output = 3
include_trailing_comma = true
lines_after_imports = 2
lexicographical = true
sections = ["FUTURE", "STDLIB", "FIRSTPARTY", "THIRDPARTY", "LOCALFOLDER"]
no_lines_before = ["STDLIB", "THIRDPARTY"]
known_third_party = []
known_local_folder = ["hmin"]