-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (34 loc) · 1.04 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
[tool.poetry]
name = "bunny-sdk"
version = "0.0.16"
description = "Python SDK for bunny.net 🐰"
authors = ["John L. Armstrong IV"]
license = "AGPL-3.0-only"
readme = "README.md"
keywords = [
"BunnyCDN",
"bunny.net",
"bunny",
"cdn",
"bunny-launcher",
"sdk",
"api",
]
[tool.poetry.urls]
Homepage = "https://bunny-launcher.net/bunny-sdk/languages/python/"
Documentation = "https://bunny-launcher.net/bunny-sdk/languages/python/"
Repository = "https://github.com/jlarmstrongiv/bunny-sdk-python.git"
Issues = "https://github.com/jlarmstrongiv/bunny-sdk-python/issues"
Changelog = "https://github.com/jlarmstrongiv/bunny-sdk-python/commits/main/"
[tool.poetry.dependencies]
python = "^3.8"
microsoft-kiota-abstractions = "1.6.0"
microsoft-kiota-http = "1.6.0"
microsoft-kiota-serialization-json = "1.6.0"
microsoft-kiota-serialization-text = "1.6.0"
microsoft-kiota-serialization-form = "1.6.0"
microsoft-kiota-serialization-multipart = "1.6.0"
urllib3 = "^2.2.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"