-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (55 loc) · 1.6 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
dist-name = "foxtail-blog"
module = "foxtail_blog"
description-file = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 4 - Beta",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
author = "Luke Rogers"
author-email = "luke@dmptr.com"
home-page = "https://github.com/dmptrluke/foxtail-blog"
requires-python=">=3.11"
requires = [
'django>=4',
'django-markdownfield>=0.6.1',
'django-taggit',
'django-versatileimagefield',
'django-crispy-forms',
'django-recaptcha',
'django-csp-helpers>=0.5.0',
'django-published>=0.7.0',
'rules'
]
[tool.flit.metadata.requires-extra]
test = [
'flit',
'atoma',
'coverage',
'factory-boy',
'django-environ',
'pytest',
'pytest-cov',
'pytest-django',
'pytest-factoryboy>=3.0.0',
'pytest-xdist',
'selenium',
'tox',
]
[tool.isort]
line_length = 100
skip_glob = "*/node_modules/*,*/.tox/*,*/.git/*"
balanced_wrapping = true
known_third_party = ["atoma", "captcha", "crispy_forms", "csp_helpers", "environ", "factory", "markdownfield", "published", "pytest", "pytest_factoryboy", "pytz", "rules", "taggit", "versatileimagefield"]
known_django = ["django"]
sections = ["FUTURE","STDLIB","DJANGO","THIRDPARTY","FIRSTPARTY","LOCALFOLDER"]