forked from levensailor/ciscoaxl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (43 loc) · 1.29 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
[tool.poetry]
name = "ciscoaxl"
version = "0.163"
description = "Cisco CUCM AXL Library. simple to use."
authors = ["Jeff Levensailor <[email protected]>", "Brad Haas <[email protected]>"]
license = "MIT"
include = ["*.wsdl", "*.xsd", "schema/*/*"]
readme = "README.md"
repository="https://github.com/levensailor/ciscoaxl"
homepage="https://github.com/levensailor/ciscoaxl"
keywords=["Cisco", "Call Manager", "CUCM", "AXL", "VoIP"]
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.dependencies]
python = "^3.7"
zeep = "^4.1.0"
requests = "^2.27.1"
termcolor = "^1.1.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
black = "^22.3.0"
flake8 = "^4.0.1"
isort = "^5.10.1"
coverage = "^6.3.2"
bandit = "^1.7.4"
python-decouple = "^3.6"
ipykernel = "^6.13.0"
notebook = "^6.4.11"
mkdocstrings = "^0.19.0"
[tool.poetry.extras]
github = ['flake8']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"