-
Notifications
You must be signed in to change notification settings - Fork 276
/
Copy pathpyproject.toml
49 lines (41 loc) · 1.27 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
49
[tool.poetry]
name = "apicurioregistrysdk"
version = "3.0.0"
description = ""
authors = ["Andrea Peruffo <andrea.peruffo1982@gmail.com>"]
readme = "README.md"
packages = [{include = "apicurioregistrysdk"}]
include = [
{ path = "openapi.json", format=["sdist", "wheel"] },
{ path = "apicurioregistrysdk/client/**/*", format=["sdist", "wheel"] },
]
exclude = [
{ path = "apicurioregistrysdk/__pycache__", format=["sdist", "wheel"] },
]
license = "Apache 2.0"
homepage = "https://github.com/apicurio/apicurio-registry"
repository = "https://github.com/apicurio/apicurio-registry"
keywords = ["apicurio", "registry"]
[tool.poetry.dependencies]
python = "^3.9"
microsoft-kiota-abstractions = "^1.0.0"
microsoft-kiota-http = "^1.2.1"
microsoft-kiota-serialization-json = "^1.0.1"
microsoft-kiota-serialization-text = "^1.0.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.3.1"
pytest-asyncio = "^0.21.0"
requests = "2.32.0"
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
[build-system]
requires = ["poetry-core", "requests", "shutils"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.build]
generate-setup-file = false
script = "kiota-gen.py"
[tool.pytest.ini_options]
pythonpath = [ "apicurioregistrysdk" ]
asyncio_mode = "auto"
[tool.black]
extend-exclude = 'client'