-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (48 loc) · 1.19 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
[tool.poetry]
name = "O365-notifications"
version = "0.1.1"
description = "Pythonic handler for O365 Streaming & Push Notifications"
authors = ["Renato Damas <rena2damas@gmail.com>"]
license = "MIT"
readme = "README.rst"
packages = [
{ include = "*", from = "src" }
]
homepage = ""
repository = "https://github.com/codectl/O365-notifications"
documentation = ""
keywords = [
"O365",
"notifications",
"push",
"streaming",
"flask",
"python",
"python3"
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
[tool.poetry.dependencies]
O365 = "^2.0.20"
python = "^3.9"
requests = "^2.28.2"
marshmallow = "^3.19.0"
[tool.poetry.dev-dependencies]
coverage = "^7.0.5"
pre-commit = "^2.21.0"
pytest = "^7.2.1"
requests-mock = "^1.10.0"
pytest-cases = "^3.6.13"
[tool.poetry.extras]
O365 = ["O365"]
[tool.poetry.urls]
issues = "https://github.com/codectl/O365-notifications/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"