forked from megalus/django-google-sso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
88 lines (82 loc) · 1.92 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
[tool.black]
target-version = ['py38', 'py39']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \venv
| \.aws-sam
| _build
| buck-out
| build
| dist
| node_modules
)/
)
'''
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
[tool.semantic_release]
version_variable = [
"django_google_sso/__init__.py:__version__",
"pyproject.toml:version"
]
branch = "main"
upload_to_pypi = true
upload_to_release = true
build_command = "python -m pip install -U twine poetry && poetry build"
[tool.poetry]
name = "django-google-sso"
version = "2.3.0"
description = "Easily add Google SSO login to Django Admin"
authors = ["Chris Maillefaud <[email protected]>"]
readme = "README.md"
repository = "https://github.com/chrismaille/django-google-sso"
keywords = ["google", "django", "sso"]
license = "MIT"
classifiers = [
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
"Environment :: Plugins"
]
[tool.poetry.dependencies]
python = ">=3.8, <4.0"
django = ">=3.2"
loguru = "*"
google-auth = "*"
google-auth-httplib2 = "*"
google-auth-oauthlib = "*"
[tool.poetry.dev-dependencies]
auto-changelog = "*"
black = {version = "*", allow-prereleases = true}
pre-commit = "*"
pytest-coverage = "*"
pytest-django = "*"
pytest-lazy-fixture = "*"
pytest-mock = "*"
twine = "*"
python-dotenv = "*"
mkdocs-material = "*"
django-grappelli = "*"
django-jazzmin = "*"
django-admin-interface = "*"
django-jet-reboot = "*"
click = ">8"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"