-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
34 lines (32 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
[tool.poetry]
name = "sinch"
description = "Sinch SDK for Python programming language"
version = "1.1.1"
license = "Apache 2.0"
readme = "README.md"
authors = [
"Sinch Developer Experience Team <[email protected]>",
]
repository = "https://github.com/sinch/sinch-sdk-python"
documentation = "https://developers.sinch.com"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications :: Telephony",
"Intended Audience :: Developers"
]
keywords = ["sinch", "sdk"]
[tool.poetry.dependencies]
python = ">=3.9"
requests = "*"
httpx = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"