-
Notifications
You must be signed in to change notification settings - Fork 432
/
Copy pathpyproject.toml
45 lines (43 loc) · 1.38 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
[project]
dynamic = ["license"]
name = "o365"
version = "2.1.0"
description = "O365 - Microsoft Graph and Office 365 API made easy"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name = "Alejcas", email = "[email protected]" },
{ name = "Narcolapser", email = "[email protected]" },
{ name = "Roycem90", email = "[email protected]" }
]
maintainers = [{ name = "Alejcas", email = "[email protected]" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"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",
]
# This is a fix for an issue in setuptools. See: https://github.com/pypa/setuptools/issues/4759
# This shoulde be removed when the issue is resolved.
[tool.setuptools]
license-files = []