-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (36 loc) · 1013 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
38
39
40
41
42
[tool.poetry]
name = "ms-python-client"
version = "2.0.4"
exclude = ["tests*", "example*", ".github*", ".git*", ".vscode*"]
description = "This package is used to interact with the microsoft graph API"
authors = ["Samuel Guillemet <samuel.guillemet@telecom-sudparis.eu>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "ms_python_client" }]
[tool.poetry.dependencies]
python = "^3.9"
python-dotenv = "^1.0.0"
msal = "^1.22.0"
requests = "^2.23.0"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
pre-commit = "^3.3.3"
mypy = "^1.4.1"
mypy-extensions = "^1.0.0"
pylint = "^2.17.4"
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
responses = "^0.23.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/cern-vc/ms-python-client/issues"
[tool.isort]
profile = "black"
[tool.mypy]
no_strict_optional = true
ignore_missing_imports = true
files = "^(ms_python_client/|tests/)"