-
Notifications
You must be signed in to change notification settings - Fork 29
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 #60 from Colin-b/develop
Version 0.16.0
- Loading branch information
Showing
13 changed files
with
1,009 additions
and
76 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
repos: | ||
- repo: https://github.com/psf/black | ||
rev: 22.1.0 | ||
rev: 23.3.0 | ||
hooks: | ||
- id: black |
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
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
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
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,57 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools_scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "httpx_auth" | ||
description = "Authentication for HTTPX" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
license = {file = "LICENSE"} | ||
authors = [ | ||
{name = "Colin Bounouar", email = "[email protected]" } | ||
] | ||
maintainers = [ | ||
{name = "Colin Bounouar", email = "[email protected]" } | ||
] | ||
keywords = ["authentication", "oauth2", "aws", "okta", "aad"] | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Typing :: Typed", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Topic :: Software Development :: Build Tools", | ||
] | ||
dependencies = [ | ||
"httpx==0.24.*", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
documentation = "https://colin-b.github.io/httpx_auth/" | ||
repository = "https://github.com/Colin-b/httpx_auth" | ||
changelog = "https://github.com/Colin-b/httpx_auth/blob/master/CHANGELOG.md" | ||
issues = "https://github.com/Colin-b/httpx_auth/issues" | ||
|
||
[project.optional-dependencies] | ||
testing = [ | ||
# Used to generate test tokens | ||
"pyjwt==2.*", | ||
# Used to mock httpx | ||
"pytest_httpx==0.22.*", | ||
# Used to check coverage | ||
"pytest-cov==4.*", | ||
] | ||
|
||
[tool.setuptools.packages.find] | ||
exclude = ["tests*"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "httpx_auth.version.__version__"} |
Oops, something went wrong.