forked from wraith-wireless/PyRIC
-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
66 lines (60 loc) · 1.57 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
[tool.poetry]
name = "pyric"
version = "0.1.0"
description = "Python Wireless Library"
license = "GPL-3.0+"
authors = ["Dale Patterson <[email protected]>",
"Brian Smith <[email protected]>"]
readme = "README.md"
repository = "https://github.com/wifiphisher/WiPy"
homepage = "https://github.com/wifiphisher/WiPy"
keywords = ["wireless", "Linux", "nl80211", "WiFi", "iw"]
documentation = "https://wifiphisher.readthedocs.io/en/latest/"
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators', 'Topic :: Security",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries', 'Topic :: Security",
"Topic :: System :: Networking",
"Topic :: Utilities",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python"
]
include = ["nlhelp/*.help", "utils/data/*.txt"]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
black = {version = "^19.10b0",allows-prereleases = true}
mypy = "^0.740"
pylint = "^2.4.3"
pycodestyle = "^2.5"
pydocstyle = "^4.0.1"
pytest = "^5.2.2"
isort = "^4.3.21"
pyflakes = "^2.1.1"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
[tool.black]
line-length = 88
target-version = ['py36', 'py37', 'py38']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry>=0.12.17"]
build-backend = "poetry.masonry.api"