-
Notifications
You must be signed in to change notification settings - Fork 42
/
pyproject.toml
40 lines (36 loc) · 1.19 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
[tool.poetry]
name = "demisto-py"
version = "3.2.15"
description = "\"A Python library for the Demisto API\""
authors = ["Demisto"]
license = "Apache-2.0"
readme = "README.md"
packages = [{include = "demisto_client"}]
homepage = "https://github.com/demisto/demisto-py"
keywords=["Swagger", "Demisto API"]
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython'
]
[tool.poetry.dependencies]
python = ">=3.8,<=3.12"
certifi = "^2024.2.2"
six = "^1.16"
python-dateutil = "^2.7.2"
urllib3 = "<2.1.0" # Can't update until CIAC-9648 is resolved
tzlocal = "^5.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-mock = "^3.12.0"
freezegun = "^1.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"