-
-
Notifications
You must be signed in to change notification settings - Fork 383
/
Copy pathpyproject.toml
75 lines (68 loc) · 1.65 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
65
66
67
68
69
70
71
72
73
74
75
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools"]
[dependency-groups]
dev = [
"tox",
"pre-commit",
"coverage>=3.6"
]
[project]
authors = [
{name = "Matias Aguirre", email = "[email protected]"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"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",
"Programming Language :: Python :: 3.9",
"Topic :: Internet"
]
dependencies = [
"Django>=3.2",
"social-auth-core~=4.4"
]
description = "Python Social Authentication, Django integration."
keywords = ["django", "openid", "oauth", "saml", "social auth"]
license = {text = "BSD"}
name = "social-auth-app-django"
readme = "README.md"
requires-python = ">=3.9"
version = "5.4.2"
[project.optional-dependencies]
# This is present until pip implements supports for PEP 735
# see https://github.com/pypa/pip/issues/12963
dev = [
"coverage>=3.6"
]
[project.urls]
Homepage = "https://github.com/python-social-auth/social-app-django"
[tool.ruff]
# Ignore some well known paths
exclude = [
".tox",
".venv",
"*.egg",
"build",
"db/env.py",
"db/versions/*.py",
"dist",
"doc",
"site"
]
ignore = []
line-length = 120
output-format = "github"
select = ["E", "F", "I", "PLC", "PLE", "UP"]
target-version = "py37"
[tool.ruff.mccabe]
max-complexity = 10
[tool.setuptools]
packages = ["social_django"]