forked from FIUS/MS365-Accountcreator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 762 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (26 loc) · 762 Bytes
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
[tool.poetry]
name = "MS365-Accountcreator"
version = "1.1.0"
description = "A small python flask server to allow users to sign up to a Microsoft Azure Tenant using the Microsoft Graph API "
authors = ["Tim Neumann <neumantm@fius.informatik.uni-stuttgart.de>"]
license = "Mozilla Public License 2.0"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.7"
flask = "^1.1"
flask-smorest = "^0.29.0"
Flask-SQLAlchemy = "^2.3"
Flask-Migrate = "^2.5"
Flask-Cors = "^3.0"
Flask-JWT-Extended = "^3.24"
requests = "^2"
msal = "^1.5"
cryptography = "^3.1"
flask-babel = "^2.0.0"
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
#flask = 'flask.cli:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"