-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
90 lines (76 loc) · 2.07 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[tool.poetry]
name = "webex-skills"
version = "2.0.16"
homepage = "https://github.com/cisco/webex-assistant-sdk"
description = "An SDK for skills for the Webex Assistant."
readme = "README.md"
authors = [
"James Snow <jasnow@cisco.com>",
"Juan Rodriguez <juanrdz@cisco.com>",
"Christian Mata <cmata@cisco.com>",
"Brady Lenz <brlenz@cisco.com>"
]
license = "MIT"
keywords = ['webex', 'webex-assistant', 'webex-teams']
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
]
[tool.poetry.dependencies]
python = "^3.7"
# cryptography 37.0.3 was yanked from pypi and should not be used
cryptography = ">= 35.0.0, != 37.0.3"
mindmeld = {version= "^4.5.0", optional=true}
requests = "^2.22.0"
typer = ">= 0.4.0, < 1"
pydantic = {extras = ["dotenv"], version = "^1.8.2"}
fastapi = ">= 0.68.1, < 1"
uvicorn = ">= 0.15.0, < 1"
[tool.poetry.dev-dependencies]
black = '>= 21.9b0'
isort = '^5.10.1'
pylint = '^2.3.1'
pytest = '^7.1.2'
pytest-cov = "^3.0.0"
tox = "^3.14.0"
autopep8 = "^1.5.7"
mock = "^4.0.3"
pytest-asyncio = ">= 0.15.1, < 1"
[tool.poetry.extras]
mindmeld = ["mindmeld"]
[tool.poetry.scripts]
webex-skills = 'webex_skills.cli:main'
[tool.autopep8]
max_line_length = 120
recursive = true
[tool.isort]
force_sort_within_sections = true
include_trailing_comma = true
line_length = 120
multi_line_output = 3
sections = ['FUTURE', 'STDLIB', 'THIRDPARTY', 'FIRSTPARTY', 'LOCALFOLDER']
default_section = 'THIRDPARTY'
skip_glob = ['scripts', 'venv*']
[tool.black]
line-length = 120
skip-string-normalization = true
target-version = ['py37']
[tool.pylint."MESSAGES CONTROL"]
disable = [
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
]
[tool.pylint.DESIGN]
max-args = 10
min-public-methods = 0
[tool.pylint.FORMAT]
max-line-length = 120
[tool.pytest.ini_options]
asyncio_mode = "auto"
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"