forked from andersinno/django-form-designer-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (56 loc) · 1.43 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
59
60
61
62
63
64
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "django-form-designer-kcs"
dynamic = ["version"]
readme = "README.rst"
license = "BSD-3-Clause"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
]
dependencies = [
"django>=4.0",
"django-picklefield",
]
[project.urls]
Homepage = "https://github.com/kcsry/django-form-designer"
[tool.hatch.build]
include = [
"form_designer/**/*.py",
"form_designer/templates/",
"form_designer/static/",
"form_designer/locale/",
]
[tool.hatch.version]
path = "form_designer/__init__.py"
[tool.hatch.build.targets.sdist]
include = ["/form_designer"]
[tool.pytest.ini_options]
django_settings_module = "dfd_tests.settings"
norecursedirs = ["bower_components", "node_modules", ".git", "venv*"]
doctest_optionflags = [
"NORMALIZE_WHITESPACE",
"IGNORE_EXCEPTION_DETAIL",
"ALLOW_UNICODE"
]
filterwarnings = [
"ignore:.+default_app_config.+",
"once::DeprecationWarning",
"once::PendingDeprecationWarning",
"ignore:.+PickledObjectField.from_db_value.+"
]
[tool.ruff]
exclude = ["migrations", "node_modules", ".tox"]
ignore = []
line-length = 120
select = ["C9", "E", "F", "W", "I"]
[tool.ruff.mccabe]
max-complexity = 10