forked from microsoft/kiota-http-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (42 loc) · 1.3 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "microsoft-kiota-http"
authors = [{name = "Microsoft", email = "[email protected]"}]
dependencies = [
"microsoft-kiota_abstractions >=1.0.0,<2.0.0",
"httpx[http2] >=0.23.0",
"opentelemetry-api >=1.20.0",
"opentelemetry-sdk >=1.20.0",
]
license = {file = "LICENSE"}
readme = "README.md"
keywords = ["kiota", "openAPI", "Microsoft", "Graph"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
]
dynamic = ["version", "description"]
[project.urls]
homepage = "https://github.com/microsoft/kiota#readme"
repository = "https://github.com/microsoft/kiota-http-python"
documentation = "https://microsoft.github.io/kiota/"
[tool.flit.module]
name = "kiota_http"
[tool.mypy]
warn_unused_configs = true
files = "kiota_http"
ignore_missing_imports = true
[tool.yapf]
based_on_style = "pep8"
dedent_closing_brackets = true
each_dict_entry_on_separate_line = true
column_limit = 100
[tool.isort]
profile = "hug"