-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 1.1 KB
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
[build-system]
requires = ["hatchling>=1.17,<1.18"]
build-backend = "hatchling.build"
[project]
name = "threecx"
version = "0.1.1"
description = "Python client for 3CX HTTP APIs with Alkivi config integration"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "LGPL-3.0-or-later"}
authors = [
{ name = "Alkivi" }
]
keywords = ["3cx", "voip", "cti", "api", "client"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"requests>=2.31.0",
"python-alkivi-config-manager>=0.1.0",
]
[project.urls]
Homepage = "https://github.com/alkivi-sas/python-3cx"
Issues = "https://github.com/alkivi-sas/python-3cx/issues"
[tool.hatch.build]
packages = ["threecx"]
include = [
"README.md",
"LICENSE",
]
[tool.hatch.version]
path = "threecx/__init__.py"
[project.optional-dependencies]
test = [
"pytest>=7.0",
]