-
Notifications
You must be signed in to change notification settings - Fork 444
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.27 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
[project]
name = "o365"
version = "2.1.9"
description = "O365 - Microsoft Graph and Office 365 API made easy"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Alejcas", email = "alejcas@users.noreply.github.com" },
{ name = "Narcolapser", email = "narcolapser@users.noreply.github.com" },
{ name = "Roycem90", email = "roycem90@users.noreply.github.com" }
]
maintainers = [{ name = "Alejcas", email = "alejcas@users.noreply.github.com" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
dependencies = [
"beautifulsoup4>=4.12.3",
"msal>=1.31.1",
"python-dateutil>=2.9.0.post0",
"requests>=2.32.3",
"tzdata>=2024.2",
"tzlocal>=5.2",
]
[dependency-groups]
dev = [
"click>=8.1.8",
"pytest>=8.3.4",
"sphinx>=7.4.7",
"sphinx-rtd-theme>=3.0.2"
]
[build-system]
requires = ["uv_build>=0.8.15,<0.9.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "O365"
module-root = ""