-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.56 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
44
45
46
47
48
49
50
51
52
53
54
55
[tool.poetry]
name = "frontegg"
version = "3.0.4"
description = "Frontegg is a web platform where SaaS companies can set up their fully managed, scalable and brand aware - SaaS features and integrate them into their SaaS portals in up to 5 lines of code."
homepage = "https://frontegg.com/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent"
]
authors = ["Frontegg LTD <[email protected]>"]
readme = "README-PYPI.rst"
[tool.poetry.dependencies]
python = "^3.8"
flask = { version = "^2.0", optional = true }
fastapi = { version = "*", optional = true }
requests = "^2.28.2"
arrow = "^1.2.3"
aiohttp = {version = "^3.6.2", optional = true}
PyJWT = "^2.6.0"
cryptography = ">=42.0.5"
typing-extensions = "^4.4.0"
httpx = ">=0.26.0"
[tool.poetry.extras]
flask = ["flask"]
fastapi = ["fastapi"]
[tool.poetry.dev-dependencies]
pytest = "^5.3.2"
pytest-flask = "^0.15.0"
pytest-vcr = "^1.0.2"
flake8-mypy = "^17.8.0"
flake8 = "^3.7.9"
autopep8 = "^1.4.4"
pydocstyle = "^5.0.2"
[tool.poetry.group.dev.dependencies]
flask-cors = "^3.0.10"
uvicorn = "^0.18.3"
[tool.poetry.group.extras.dependencies]
redis = "^4.0.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"