-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.23 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "microsoft-kiota-abstractions"
authors = [{name = "Microsoft", email = "graphtooling+python@microsoft.com"}]
dependencies = [
"std-uritemplate >=0.0.38",
"opentelemetry-api >=1.19.0",
"opentelemetry-sdk >=1.19.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",
"License :: OSI Approved :: MIT License",
]
dynamic = ["version", "description"]
[project.urls]
homepage = "https://github.com/microsoft/kiota#readme"
repository = "https://github.com/microsoft/kiota-abstractions-python"
documentation = "https://microsoft.github.io/kiota/"
[tool.flit.module]
name = "kiota_abstractions"
[mypy]
warn_unused_configs = true
files = "kiota_abstractions"
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"