-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (67 loc) · 1.98 KB
/
pyproject.toml
File metadata and controls
74 lines (67 loc) · 1.98 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cardo-python-utils"
version = "0.5.8"
description = "Python library enhanced with a wide range of functions for different scenarios."
readme = "README.rst"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "CardoAI", email = "hello@cardoai.com"},
]
keywords = ["utilities", "helpers", "django"]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
dependencies = []
[project.optional-dependencies]
django-keycloak = [
"PyJWT>=2.10.1",
"mozilla-django-oidc>=4.0.1",
"requests",
]
django-keycloak-groups = [
"python-keycloak>=5.8.1",
]
all = [
"PyJWT>=2.10.1",
"mozilla-django-oidc>=4.0.1",
"python-keycloak>=5.8.1",
"requests",
]
dev = [
"pytest>=7.0",
"pytest-django>=4.5",
"coverage>=6.0",
"tox>=3.25",
]
[project.urls]
Homepage = "https://github.com/CardoAI/cardo-python-utils"
Repository = "https://github.com/CardoAI/cardo-python-utils.git"
Issues = "https://github.com/CardoAI/cardo-python-utils/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests", "tests.*"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
django_find_project = false
python_files = ["tests.py", "test_*.py", "*_tests.py"]
addopts = "--strict-markers --no-migrations --reuse-db --log-cli-level=INFO --doctest-modules"
[tool.tox]
legacy_tox_ini = "tox.ini"