-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
64 lines (59 loc) · 1.5 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
[tool.poetry]
authors = ["Vagiz Duseev <[email protected]>"]
description = "Dynatrace CLI"
documentation = "https://github.com/dynatrace-oss/dt-cli"
homepage = "https://github.com/dynatrace-oss/dt-cli"
keywords = ["dynatrace", "cli", "extensions"]
license = "Apache-2.0"
maintainers = ["Vagiz Duseev <[email protected]>"]
name = "dt-cli"
packages = [
{include = "dtcli"},
]
readme = "README.md"
repository = "https://github.com/dynatrace-oss/dt-cli"
version = "1.6.19"
[tool.poetry.dependencies]
PyYAML = "^6.0"
asn1crypto = "^1.4"
click-aliases = "^1.0"
cryptography = ">3"
python = "^3.8"
wheel = "^0"
requests = "^2.26"
jsonschema = "^4.7"
typer = "^0"
[tool.poetry.group.dev.dependencies]
Sphinx = ">=3.5"
black = {version = ">=20", allow-prereleases = true}
bump2version = ">=1.0"
flake8 = ">=3.9"
flake8-blind-except = ">=0.2"
flake8-bugbear = ">=21.4"
flake8-comprehensions = ">=3.4"
flake8-docstrings = ">=1.6"
flake8-import-order = ">=0.18"
flake8-polyfill = ">=1.0"
ipython = ">=7.22"
mypy = ">=0.812"
pydocstyle = ">=6.0"
pytest = ">=5.2"
pytest-black = ">=0.3"
pytest-cov = ">=2.11"
pytest-flake8 = ">=1.0"
pytest-mock = ">=3.5"
pytest-mypy = ">=0.8"
types-requests = ">=2.25"
types-PyYAML = ">=5.4"
types-jsonschema = ">=3.2"
radon = ">=4.0"
sphinxcontrib-programoutput = ">=0.17"
# pyinstaller = ">=4.3"
# staticx = ">=0.13.8"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.8"]
[tool.poetry.scripts]
dt = 'dtcli.__main__:main'
[tool.black]
line-length = 120