-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpyproject.toml
53 lines (43 loc) · 2.43 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
[project]
name = "strawberry-django-auth"
classifiers = [ "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Framework :: Django", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12",]
description = "Graphql authentication system with Strawberry for Django."
version = "0.378.3"
readme = "README.md"
requires-python = ">=3.10,<3.14"
dependencies = [ "django>=5.1.3", "Django>=4.2,<5.3", "PyJWT>=2.6.0,<3.0", "strawberry-graphql-django>=0.47.0", "django-stubs[compatible-mypy]>=4.2.0",]
[[project.authors]]
name = "Nir Benlulu"
email = "[email protected]"
[[project.maintainers]]
name = "Nir Benlulu"
email = "[email protected]"
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[project.urls]
Documentation = "https://nrbnlulu.github.io/strawberry-django-auth/"
Homepage = "https://github.com/nrbnlulu/strawberry-django-auth"
[project.optional-dependencies]
captcha = [ "pillow>=11.0.0",]
[tool.mypy]
plugins = [ "mypy_django_plugin.main", "strawberry.ext.mypy_plugin",]
ignore_missing_imports = true
[tool.django-stubs]
django_settings_module = "tests.testproject.settings"
[tool.uv]
dev-dependencies = [ "pre-commit>=4.0.1", "coverage>=7.2", "pytest>=7.2", "pytest-cov>=4,<6", "types-cryptography>=3.3.23", "django-mock-queries>=2.1.7", "types-mock>=5.0.0", "types-jwt>=0.1.0", "mkdocs>=1.3.0", "mkdocs-markdownextradata-plugin>=0.2.5", "mkdocs-material>=8.5.4", "mkdocs-minify-plugin>=0.5.0", "pymdown-extensions>=9.9", "Markdown>=3.4.1", "Faker>=18.2.0", "pytest-asyncio>=0.21.0", "pydoc-markdown[novella]>=4.6.4", "setuptools>=67.6.0", "channels[daphne]>=4.0.0", "pytest-django>=4.5.2", "typer>=0.12.1", "pygithub>=2.3.0", "httpx>=0.27.0", "jinja2>=3.1.4", "toml>=0.10.2",]
[tool.pytest.ini_options]
django_find_project = false
minversion = "6.0"
addopts = "-ra -q"
testpaths = [ "tests",]
DJANGO_SETTINGS_MODULE = "tests.testproject.settings_b"
python_files = "tests.py test_*.py *_tests.py"
asyncio_mode = "auto"
markers = [ "default_user: uses the default settings, a user with email address and default USERNAME_FIELD", "settings_b: uses a custom user model, not captcha validation as well as some other non-default settings",]
[tool.ruff.lint]
select = [ "E", "F", "ERA", "I",]
ignore = [ "TID252", "E501",]
[tool.hatch.build.targets.wheel]
packages = [ "gqlauth",]