forked from jeremyschulman/netcadcam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (42 loc) · 1007 Bytes
/
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
[tool.poetry]
name = "netcad"
version = "0.0.1"
description = "NetCadCam - Network Automation by Design"
authors = ["Jeremy Schulman"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
click = "^8.0.1"
httpx = "^0.19.0"
tenacity = "^8.0.1"
pydantic = "^1.8.2"
Jinja2 = "^3.0.2"
more-itertools = "^8.10.0"
toml = "^0.10.2"
rich = "^10.12.0"
aiofiles = "^0.7.0"
maya = "^0.6.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
invoke = "^1.6.0"
black = "^21.6b0"
flake8 = "^3.9.2"
flake8-breakpoint = "^1.1.0"
pytest-cov = "^2.12.1"
pytest-asyncio = "^0.15.1"
asynctest = "^0.13.0"
tox = "^3.23.1"
pre-commit = "^2.13.0"
interrogate = "^1.4.0"
[tool.interrogate]
fail-under = 0
verbose = 1
color = true
ignore-module = true
exclude = ["tasks.py", "examples", "build", "venv"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
netcad = 'netcad.cli.netcad:script'
netcam = 'netcad.cli.netcam:script'