This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
98 lines (86 loc) · 2.1 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[tool.black]
line-length = 120
target_version = ['py38']
include = '\.py$'
extend-exclude = '''
/(
| migrations
)/
'''
[tool.isort]
profile = "black"
skip_glob = "*/migrations/*.py"
[tool.coverage.run]
branch = true
omit = [
"*/.venv/*",
"runtests.py",
"makemigrations.py"
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __str__"
]
omit = [
"*/.venv/*",
"runtests.py",
"makemigrations.py"
]
show_missing = true
skip_covered = true
skip_empty = true
precision = 2
[tool.poetry]
name = "django-social-oauth-token"
version = "3.0.0"
description = "OAuth Token generation API for handling OAuth 2.0 Authentication Code Flow based on social-auth"
authors = ["Khasbilegt.TS <khasbilegt.ts@gmail.com>"]
license = "MIT"
homepage = "https://github.com/khasbilegt/django-social-oauth-token"
repository = "https://github.com/khasbilegt/django-social-oauth-token"
keywords = ["django", "model", "user", "email", "username", "custom"]
readme = "README.md"
classifiers = [
"Topic :: Software Development :: Build Tools",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1"
]
packages = [
{ include = "social_oauth_token"},
]
include = [
"LICENSE",
"README.md"
]
[tool.poetry.dependencies]
python = "^3.9"
django-oauth-toolkit = "^2.1.0"
social-auth-app-django = "^5.0.0"
[tool.poetry.dev-dependencies]
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
nox = "^2024.4.15"
pytest-django = "^4.9.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.6.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "UP", "B", "SIM", "I"]
ignore = []
fixable = ["ALL"]
unfixable = []
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"