-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (84 loc) · 2.22 KB
/
Copy pathpyproject.toml
File metadata and controls
95 lines (84 loc) · 2.22 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "django-filtersmerger"
dynamic = ["version"]
description = ""
authors = [
{name = "MPA Solutions", email = "info@mpasol.it"},
]
license = {text = "GNU GPLv3 License"}
readme = "README.rst"
requires-python = ">=3.12"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 5.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
dependencies = [
"Django",
]
# Develop dependencies (optional)
[project.optional-dependencies]
dev = [
]
[project.urls]
Homepage = "https://github.com/MPASolutions/django-filtersmerger"
[project.scripts]
publish = "scripts.publish:main"
tag = "scripts.tag:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["*"]
exclude = ["tests*", "docs*"]
namespaces = false
[tool.setuptools.dynamic]
version = {attr = "django_filtersmerger.__init__.__version__"}
# long-description = {file = ["README.rst", "CHANGELOG.rst"], content-type = "text/x-rst"}
[tool.isort]
profile = "black"
combine_as_imports = true
include_trailing_comma = true
line_length = 119
src_paths = ["django_filtersmerger"]
[tool.black]
line-length = 119
skip-magic-trailing-comma = false
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.flake8]
extend-ignore = ["E203",]
max-line-length = 119
exclude = ["django_filtersmerger/migrations", ".git", ".tox", "docs", "build", "dist"]
# max-complexity = 15
# [tool.pytest.ini_options]
# DJANGO_SETTINGS_MODULE = "prjcore.settings"
# python_files = ["test_*.py", "*_test.py", "testing/python/*.py"]
# filterwarnings = [
# "error",
# "ignore::DeprecationWarning:",
# "ignore::django.utils.deprecation.RemovedInDjango60Warning",
# "ignore::cryptography.utils.CryptographyDeprecationWarning",
# ]