forked from demisto/dockerfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 874 Bytes
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 874 Bytes
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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "dockerfiles"
version = "0.0.1"
description = "Dockerfiles for Cortex XSOAR content"
authors = ["Cortex XSOAR"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
"ruamel.yaml" = "*"
requests = "*"
dockerfile_parse = "*"
pyyaml = "*"
regex = "*"
python-dateutil = "*"
gitpython = "^3.1.45" # import git
python-gitlab = "^3.0.0" # import gitlab
toml = "*"
demisto-sdk = "1.38.11"
wrapt = "^1.17.3"
pipenv = "^2024.4.0"
jira = "^3.8.0"
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-mock = "*"
[tool.pytest.ini_options]
addopts = """
--disable-warnings
--color=yes
-v
--ignore='Tests/'
--ignore='artifacts/'
--ignore='Utils/'
--junitxml=report.xml
"""
python_files = "test_*.py *_test.py"