forked from demisto/demisto-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
122 lines (116 loc) · 2.79 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[tool.poetry]
name = "demisto-sdk"
version = "1.6.7"
description = "\"A Python library for the Demisto SDK\""
authors = ["Demisto"]
license = "MIT"
readme = "README.md"
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython'
]
exclude = ["TestSuite/**", "*/tests/*", "tests"]
[tool.poetry.scripts]
demisto-sdk = "demisto_sdk.__main__:main"
[tool.vulture]
exclude = ["*/tests/*"]
min_confidence = 80
paths = ["demisto_sdk", "TestSuite"]
sort_by_size = true
[tool.poetry.dependencies]
python = "^3.8"
autopep8 = "^1.6.0"
bandit = "^1.7.4"
mypy = "^0.942"
pylint = "2.12.2"
vulture = "^2.3"
flake8 = "^4.0.1"
bs4 = "^0.0.1"
chardet = "^4.0.0"
click = "^8.0.0"
colorama = "^0.4.4"
coloredlogs = "^15.0.1"
configparser = "^5.2.0"
coverage = "^6.3.2"
decorator = "^5.1.1"
demisto-py = "^3.1.6"
dictor = "^0.1.9"
docker = "*"
flatten-dict = "^0.4.2"
gitdb = "^4.0.9"
google-cloud-storage = "^2.2.1"
inflection = "^0.5.1"
isort = "^5.10.1"
jsonschema = "^4.4.0"
mergedeep = "^1.3.4"
networkx = "^2.7.1"
nltk = "^3.7"
pipenv = "^2022.3.28"
prettytable = "^3.2.0"
pykwalify = "^1.8.0"
pyspellchecker = "^0.6.3"
requests = "^2.27.1"
"ruamel.yaml" = "^0.17.21"
slackclient = "^2.9.3"
tabulate = "^0.8.9"
ujson = "^5.1.0"
urllib3 = "^1.26.9"
wcmatch = "^8.3"
yamlordereddictloader = "^0.4.0"
GitPython = "^3.1.27"
Jinja2 = "^3.1.1"
Pebble = "^4.6.3"
PyPDF2 = "^1.26.0"
giturlparse = "^0.10.0"
pytest-freezegun = "^0.4.2"
python-dotenv = "^0.20.0"
importlib-resources = "^5.6.0"
dictdiffer = "^0.9.0"
setuptools = "^62.0.0"
MarkupSafe = "^2.1.1"
imagesize = "^1.3.0"
cryptography = "^36.0.2"
dateparser = "^1.1.1"
typed-ast = "^1.5.2"
types-dateparser = "^1.1.0"
types-PyYAML = "^6.0.5"
types-requests = "2.26.3"
types-pytz = "^2021.3.6"
types-python-dateutil = "^2.8.10"
types-pyvmomi = "^7.0.6"
types-tabulate = "^0.8.6"
types-paramiko = "^2.8.17"
types-emoji = "^1.2.7"
types-ipaddress = "^1.0.8"
types-chardet = "^4.0.3"
types-six = "^1.16.12"
types-PyMySQL = "^1.0.15"
types-protobuf = "^3.19.15"
typing-extensions = "^4.1.1"
gsutil = {version = "5.8", optional = true}
klara = "^0.6.3"
ordered-set = "^4.1.0"
types-filelock = "^3.2.5"
types-Markdown = "^3.3.21"
types-futures = "^3.3.8"
[tool.poetry.dev-dependencies]
mitmproxy = "^8.0.0"
mock = "^4.0.3"
pre-commit = "^2.18.1"
pytest = "^7.1.1"
pytest-cov = "^3.0.0"
pytest-datadir-ng = "^1.1.1"
pytest-mock = "^3.7.0"
pytest-subprocess = "^1.4.1"
requests-mock = "^1.9.3"
Deprecated = "^1.2.13"
[tool.poetry.extras]
build = ["gsutil"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"