Skip to content

Commit

Permalink
Build revision
Browse files Browse the repository at this point in the history
  • Loading branch information
na-stewart committed Jun 23, 2024
1 parent 62fd3d7 commit 8e36b55
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,28 @@
requires = ["setuptools>=58.0.0", "wheel"]
build-backend = "setuptools.build_meta"

[tool.poetry]
[project]
name = "sanic-security"
version = "1.12.0"
requires-python = ">=3.8"
dependencies = [
"tortoise-orm>=0.17.0",
"pyjwt>=1.7.0",
"captcha>=0.4",
"pillow>=9.5.0",
"argon2-cffi>=20.1.0",
"sanic>=21.3.0"
]
description = "An effective, simple, and async security library for the Sanic framework."
authors = ["Aidan Stewart <[email protected]>"]
authors = [
{ name="Aidan Stewart", email="[email protected]" },
]
readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.8,<4.0"
tortoise-orm = ">=0.17.0"
pyjwt = ">=1.7.0"
captcha = ">=0.4"
pillow = ">=9.5.0"
argon2-cffi = ">=20.1.0"
sanic = ">=21.3.0"
httpx = {version="*", optional=true}
cryptography = {version=">=3.3.1", optional=true}
black = {version="*", optional=true}
blacken-docs = {version="*", optional=true}
pdoc3 = {version="*", optional=true}

[tool.poetry.extras]
[project.optional-dependencies]
dev = ["httpx", "black", "blacken-docs", "pdoc3", "cryptography"]
crypto = ["cryptography"]
crypto = ["cryptography>=3.3.1"]

[project.urls]
Documentation = "https://security.na-stewart.com/"
Repository = "https://github.com/na-stewart/sanic-security"

0 comments on commit 8e36b55

Please sign in to comment.