-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
43 lines (40 loc) · 1 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
[tool.poetry]
name = "Authl"
version = "0.7.3"
description = "Framework-agnostic authentication wrapper"
authors = ["fluffy <fluffy@beesbuzz.biz>"]
license = "MIT"
readme = "README.md"
homepage = "https://plaidweb.site/"
repository = "https://github.com/PlaidWeb/Authl"
documentation = "https://authl.readthedocs.io/"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
beautifulsoup4 = "^4.9.1"
expiringdict = "^1.2.1"
itsdangerous = ">=1.1.0"
requests = "^2.24.0"
requests_oauthlib = "^1.3.0"
validate_email = "^1.3"
mf2py = "^1.1.2"
mastodon-py = "^1.7.0"
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.2"
flake8 = "^6.0.0"
flask = "^3.1.0"
isort = "^5.12.0"
mypy = "^1.1.1"
pylint = "^2.16.4"
coverage = "^7.2.1"
pytest = "^7.2.2"
requests-mock = "^1.10.0"
sphinx = "^7.3.7"
pytest-mock = "^3.10.0"
types-requests = "^2.28.11.15"
sphinx-rtd-theme = "^2.0.0"
pip-tools = "^7.3.0"
poetry-plugin-export = "^1.8.0"
hypercorn = "^0.17.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"