-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (73 loc) · 1.84 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (73 loc) · 1.84 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyOutlook"
version = "5.0.2"
description = "A Python module for connecting to the Outlook REST API, without the hassle of dealing with the JSON formatting for requests/responses and the REST endpoints and their varying requirements"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Jens Astrup", email = "jensaiden@gmail.com"}
]
keywords = ["outlook", "office365", "microsoft", "email"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Communications :: Email :: Email Clients (MUA)",
"Topic :: Office/Business",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Natural Language :: English"
]
dependencies = [
"requests",
"python-dateutil"
]
[project.optional-dependencies]
dev = [
"coverage",
"pytest",
"pytest-cov"
]
[project.urls]
Homepage = "https://pypi.python.org/pypi/pyOutlook"
Documentation = "http://pyoutlook.readthedocs.io/en/latest/"
[tool.setuptools.packages.find]
where = ["src"]
include = ["pyOutlook*"]
[tool.pyrefly]
search_path = ["src/pyOutlook"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
norecursedirs = ["scripts", "venv", "build", "dist", "*.egg-info"]
[tool.coverage.run]
omit = [
"build/",
"docs/",
"pyOutlook.egg-info/",
"setup.py",
"tests/",
"venv/",
]
exclude_lines = [
"def __repr__",
"def __str__",
]
[tool.coverage.report]
omit = [
"build/",
"docs/",
"pyOutlook.egg-info/",
"setup.py",
"tests/",
"venv/",
]
exclude_lines = [
"def __repr__",
"def __str__",
]