-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
47 lines (43 loc) · 1.01 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
[tool.poetry]
name = "dnac-sidekick"
homepage = "https://github.com/dannywade/dnac-sidekick"
version = "0.1.3"
description = "A CLI app used to interact with Cisco DNA Center"
authors = ["Dan Wade <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "dnac_sidekick"}]
[tool.poetry.dependencies]
python = "^3.8"
attrs = "22.1.0"
black = "22.8.0"
certifi = "2022.6.15.1"
charset-normalizer = "2.1.1"
click = "8.1.3"
commonmark = "0.9.1"
coverage = "6.4.4"
idna = "3.3"
iniconfig = "1.1.1"
mypy-extensions = "0.4.3"
packaging = "21.3"
pathspec = "0.10.1"
platformdirs = "2.5.2"
pluggy = "1.0.0"
py = "1.11.0"
Pygments = "2.13.0"
pyparsing = "3.0.9"
pytest = "7.1.3"
pytest-cov = "3.0.0"
python-dotenv = "0.21.0"
requests = "2.28.1"
rich = "12.5.1"
tomli = "2.0.1"
typing-extensions = "4.3.0"
urllib3 = "1.26.12"
Jinja2 = "^3.1.2"
PyYAML = "^6.0"
[tool.poetry.scripts]
dnac-sidekick = "dnac_sidekick.cli:dnac_cli"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"