-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
32 lines (29 loc) · 879 Bytes
/
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
[tool.poetry]
name = "django-siwe-auth"
version = "0.3.2"
description = "Custom Django authentication backend using Sign-In with Ethereum (EIP-4361) with a custom wallet user model."
license = "MIT"
authors = ["Payton Garland <[email protected]>"]
packages = [
{ include = "siwe_auth" }
]
exclude = ["siwe_auth/frontend"]
readme = "README.md"
repository = "https://github.com/payton/django-siwe-auth"
keywords = ["SIWE", "EIP-4361", "Sign-In with Ethereum", "Django", "Web3", "Authentication", "Authorization"]
[tool.poetry.dependencies]
python = "^3.8"
web3 = "^5.26.0"
siwe = "^1.0.0"
Django = "^4.0.1"
pytz = "^2021.3"
django-ratelimit = "^3.0.1"
[tool.poetry.dev-dependencies]
black = "^21.12b0"
pytest = "^6.2.5"
flake8 = "^4.0.1"
eth-account = "^0.5.6"
pyhumps = "^3.5.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"