-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
86 lines (78 loc) · 1.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
[tool.poetry]
name = "ark-sdk-python"
version = "2.0.1"
description='Official Ark SDK / CLI for CyberArk Identity Security Platform'
authors = ["CyberArk <[email protected]>", "Ofir Iluz <[email protected]"]
readme = "README.md"
license = "Apache-2.0"
classifiers = [
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
]
repository = "https://github.com/cyberark/ark-sdk-python"
packages = [{ include = "ark_sdk_python" }]
[tool.poetry.group.dev.dependencies]
isort = "*"
pylint = "*"
black = "*"
toml = "*"
GitPython = "*"
wheel = "*"
mike = "*"
twine = "*"
mkdocstrings = "*"
mkdocstrings-python = "*"
mkdocs-material = "*"
mkdocs-gen-files = "*"
mkdocs-literate-nav = "*"
mkdocs-section-index = "*"
pymdown-extensions = "*"
pytest = "*"
pytest-mock = "*"
python-dotenv = "*"
[tool.poetry.dependencies]
python = "^3.9"
requests = "*"
keyring = "*"
"keyrings.cryptfile" = "*"
colorama = "*"
pydantic = "2.*"
argcomplete = "*"
pyhumps = "*"
overrides = "*"
packaging = "*"
deepdiff = "7.*.*"
pycryptodome = "*"
dill = "*"
urlextract = "*"
inquirer = "*"
progress = "*"
aenum = "*"
cachetools = "*"
pyjwt = "*"
fake-useragent = "1.5.1"
tzlocal = "*"
pyyaml = "*"
python-dateutil = "*"
paramiko = "*"
pywinrm = "*"
[tool.poetry.scripts]
ark = 'ark_sdk_python.ark:main'
[tool.poetry.build]
generate-setup-file = false
script = "build.py"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.requires-plugins]
poetry-plugin-bundle = ">=1.3"
poetry-plugin-export = ">=1.7.0"
[tool.yapfignore]
ignore_patterns = [
".poetry"
]