-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
39 lines (37 loc) · 1.15 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
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
dist-name = "django-markdownfield"
module = "markdownfield"
description-file = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 4 - Beta",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
author = "Luke Rogers"
author-email = "[email protected]"
home-page = "https://github.com/dmptrluke/django-markdownfield"
requires-python=">=3.8"
requires = [
'django>=3.2',
'bleach[css]>=5.0.1',
'markdown',
'shortuuid',
'dataclasses; python_version == "3.6"',
]
[tool.isort]
line_length = 100
skip_glob = "*/node_modules/*,*/.tox/*,*/.git/*"
balanced_wrapping = true
known_third_party = ["bleach", "markdown", "shortuuid"]
known_django = ["django"]
sections = ["FUTURE","STDLIB","DJANGO","THIRDPARTY","FIRSTPARTY","LOCALFOLDER"]