-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (95 loc) · 2.92 KB
/
pyproject.toml
File metadata and controls
106 lines (95 loc) · 2.92 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
96
97
98
99
100
101
102
103
104
105
106
[build-system]
requires = ["setuptools>=75.2"]
build-backend = "setuptools.build_meta"
[project]
name = "django-tenant-options"
version = "2026.2.1"
description = "Empowering Your SaaS Tenants with Custom Options and Sane Defaults"
authors = [{ name = "Jack Linke", email = "jacklinke@gmail.com" }]
license = "MIT"
readme = "README.md"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.11,<4.0"
dependencies = ["django>=4.2.15"]
[project.urls]
Homepage = "https://github.com/OmenApps/django-tenant-options"
Repository = "https://github.com/OmenApps/django-tenant-options"
Documentation = "https://django-tenant-options.readthedocs.io"
Changelog = "https://github.com/OmenApps/django-tenant-options/releases"
[dependency-groups]
dev = [
"bandit>=1.7.8",
"click~=8.1",
"coverage[toml]>=7.6.1",
"crispy-bootstrap5~=2024.10",
"django-anymail~=12.0",
"django-auto-prefetch>=1.11.0",
"django-crispy-forms~=2.3",
"furo>=2024.8.6",
"linkify-it-py==2.0.3",
"myst-parser>=4.0.0",
"nox>=2025.2.9",
"pip-audit>=2.7.0",
"pre-commit-hooks>=4.6.0",
"pre-commit>=3.7.1",
"psycopg2-binary>=2.9.9",
"Pygments>=2.18.0",
"pytest-cov>=5.0.0",
"pytest-django>=4.9.0",
"pytest>=8.3.3",
"python-environ~=0.4",
"pyright>=1.1.400",
"pyupgrade>=3.15.2",
"ruff>=0.8.0",
"sphinx-autobuild>=2024.4.16",
"sphinx-click>=6.0.0",
"sphinx>=8.0.2",
"xdoctest[colors]>=1.1.3",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.coverage.paths]
source = ["src", "*/site-packages"]
tests = ["example_project", "*/example_project"]
[tool.coverage.run]
branch = true
source = ["src", "example_project"]
[tool.coverage.report]
show_missing = true
fail_under = 50
omit = [".nox/*", "example_project/*", "**/migrations/*", "**/__init__.py"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "example_project.settings"
python_files = ["*test_*.py", "*_test.py", "example_project/*.py"]
log_cli = true
log_cli_level = "INFO"
[tool.ruff]
src = ["src"]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["E", "W", "F", "I"]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["django_tenant_options"]
force-single-line = true
lines-after-imports = 2