-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from maykinmedia/pyproject
Switch to `pyproject.toml`
- Loading branch information
Showing
8 changed files
with
133 additions
and
143 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[flake8] | ||
max-line-length=88 | ||
exclude=env,.tox,doc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "mozilla-django-oidc-db" | ||
version = "0.18.1" | ||
description = "A database-backed configuration for mozilla-django-oidc" | ||
authors = [ | ||
{name = "Maykin Media", email = "support@maykinmedia.nl"} | ||
] | ||
readme = "README.rst" | ||
license = {file = "LICENSE"} | ||
keywords = ["OIDC", "django", "database", "authentication"] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Framework :: Django", | ||
"Framework :: Django :: 4.2", | ||
"Intended Audience :: Developers", | ||
"Operating System :: Unix", | ||
"Operating System :: MacOS", | ||
"Operating System :: Microsoft :: Windows", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
] | ||
requires-python = ">=3.10" | ||
dependencies = [ | ||
"django>=4.2", | ||
"django-jsonform", | ||
"django-solo", | ||
"glom", | ||
"mozilla-django-oidc>=3.0.0", | ||
"typing-extensions>=4.0.0", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "/~https://github.com/maykinmedia/mozilla-django-oidc-db" | ||
Documentation = "https://mozilla-django-oidc-db.readthedocs.io/en/latest/" | ||
"Bug Tracker" = "/~https://github.com/maykinmedia/mozilla-django-oidc-db/issues" | ||
"Source Code" = "/~https://github.com/maykinmedia/mozilla-django-oidc-db" | ||
Changelog = "/~https://github.com/maykinmedia/mozilla-django-oidc-db/blob/master/CHANGELOG.rst" | ||
|
||
[project.optional-dependencies] | ||
tests = [ | ||
"psycopg2", | ||
"pytest", | ||
"pytest-django", | ||
"pytest-mock", | ||
"pytest-recording", | ||
"requests-mock", | ||
"factory-boy", | ||
"pyquery", | ||
"tox", | ||
"isort", | ||
"black", | ||
"flake8", | ||
] | ||
coverage = [ | ||
"pytest-cov", | ||
] | ||
docs = [ | ||
"sphinx", | ||
"sphinx-rtd-theme", | ||
] | ||
release = [ | ||
"bump-my-version", | ||
"twine", | ||
] | ||
|
||
[tool.setuptools.packages.find] | ||
include = ["mozilla_django_oidc_db*"] | ||
namespaces = false | ||
|
||
[tool.isort] | ||
profile = "black" | ||
combine_as_imports = true | ||
known_django = "django" | ||
known_first_party="mozilla_django_oidc_db" | ||
sections=["FUTURE", "STDLIB", "DJANGO", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"] | ||
skip = ["env", "node_modules", ".tox"] | ||
skip_glob = ["**/migrations/**"] | ||
|
||
[tool.pytest.ini_options] | ||
testpaths = ["tests"] | ||
DJANGO_SETTINGS_MODULE = "testapp.settings" | ||
markers = [ | ||
"oidcconfig: keyword arguments for the OIDC config", | ||
"auth_request: additional configuration for the auth_request fixture", | ||
"callback_request: additional configuration for the callback_request fixture", | ||
"mock_backend_claims: claims to be returned by the mock backend fixture", | ||
] | ||
|
||
[tool.bumpversion] | ||
current_version = "0.18.1" | ||
files = [ | ||
{filename = "pyproject.toml"}, | ||
{filename = "README.rst"}, | ||
{filename = "docs/conf.py"}, | ||
] | ||
|
||
[tool.coverage.run] | ||
branch = true | ||
source = [ | ||
"mozilla_django_oidc_db" | ||
] | ||
omit = [ | ||
# migrations run while django initializes the test db | ||
"*/migrations/*", | ||
] | ||
|
||
[tool.coverage.report] | ||
exclude_also = [ | ||
"if (typing\\.)?TYPE_CHECKING:", | ||
"@(typing\\.)?overload", | ||
"class .*\\(.*Protocol.*\\):", | ||
"@(abc\\.)?abstractmethod", | ||
"raise NotImplementedError", | ||
"\\.\\.\\.", | ||
"pass", | ||
] | ||
omit = [ | ||
"*/migrations/*", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters