-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (31 loc) · 1006 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
33
34
35
36
37
[tool.poetry]
name = "msgraphy"
version = "0.4.0"
description = "An API generator for the MS Graph API"
authors = ["Kaj Siebert <kaj@k-si.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.7, <4"
msal = "^1.10.0"
requests = "^2.25.1"
pyhumps = "^3.0.2"
"fs.onedrivefs" = {version = "^1.1.1", optional = true}
click = {version = "^8.1.3", optional = true}
click-log = {version = "^0.4.0", optional = true}
usersettings = {version = "^1.1.5", optional = true}
rich = {version = "^12.6.0", optional = true}
[tool.poetry.dev-dependencies]
python-dotenv = "^0.17.0"
pytest = "^6.2.5"
bump2version = "^1.0.1"
coverage = "^6.2"
[tool.poetry.extras]
fs = ["fs.onedrivefs"]
cli = ["click", "click-log", "usersettings", "rich"]
[tool.poetry.scripts]
msgraphy = { callable = "msgraphy:cli.msgraphy", extras = ["cli"] }
[tool.poetry.plugins."fs.opener"]
"o365" = "msgraphy.fs.opener:MSGraphyOneDriveFSOpener"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"