-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
50 lines (45 loc) · 933 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
49
50
[tool.poetry]
name = "dhcpdoctor"
version = "1.0.0"
description = "Tool for testing IPv4 and IPv6 DHCP services"
readme = "README.md"
authors = ["Matej Vadnjal <matej.vadnjal@arnes.si>"]
license = "MIT"
repository = "https://github.com/ArnesSI/dhcpdoctor"
classifiers = [
"Topic :: System :: Monitoring"
]
[tool.poetry.scripts]
dhcpdoctor = 'dhcpdoctor.dhcpdoctor:main'
[tool.poetry.dependencies]
python = "^3.4"
scapy = "^2.4"
[tool.poetry.dev-dependencies]
pyinstaller = "*"
bumpversion = "*"
black = {version = "*", python = "^3.6", allows-prereleases = true}
flake8 = "*"
coverage = "^4.5"
pydocstyle = "^3.0"
[tool.black]
line-length = 88
skip-string-normalization = true
py36 = true
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"