forked from logangoins/SOAPy
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (36 loc) · 826 Bytes
/
pyproject.toml
File metadata and controls
44 lines (36 loc) · 826 Bytes
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
[tool.poetry]
name = "soapy"
version = "0.1.0"
description = ""
authors = [
"Jackson-Leverett <jack.leverett@ibm.com>",
"Logan-Goins <logan.goins@ibm.com>",
]
readme = "README.md"
packages = [{ include = "src" }]
[tool.poetry.scripts]
soapy = "src:run_cli"
[tool.poetry.dependencies]
python = "^3.11"
impacket = "^0.11.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
hypothesis = "^6.103.2"
ruff = "^0.7.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"N", # PEP8 naming convetions
]
[tool.ruff.lint.pydocstyle]
convention = "google"