-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
56 lines (49 loc) · 1.43 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
[project]
name = "seatre"
version = "1.0.0"
authors = [
{ name="Nadzeya Hutsko", email="[email protected]" },
]
description = "Scripts that implement different network attacks"
readme = "README.md"
dependencies = ["pylintfileheader", "scapy", "wikipedia"]
license = { text="GPL-3.0 license" }
requires-python = ">=3.10"
classifiers = [
"Environment :: Console",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
]
[project.urls]
"Homepage" = "https://github.com/nadzyah/seatre"
"Bug Tracker" = "https://github.com/nadzyah/seatre/issues"
[project.entry-points.console_scripts]
seatre = "app:main"
[tool.black]
line-length = 79
[tool.poetry]
name = "seatre"
version = "1.0.0"
description = "Scripts that implement different network attacks"
authors = ["nadzyah <[email protected]>"]
license = "GPL-3.0 license"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pylintfileheader = "^1.0.0"
scapy = "^2.5.0"
wikipedia = "^1.4.0"
[tool.poetry.group.dev.dependencies]
black = "^24.2.0"
ruff = "^0.2.2"
flake8 = "^7.0.0"
pylint = "^3.0.3"
twine = "^5.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"