-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 761 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 761 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "pwncli"
version = "1.6"
description = "pwncli, do pwn quickly."
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = "roderick chan", email = "roderickchan@foxmail.com" },
]
license = "MIT"
requires-python = ">=3"
dependencies = [
"click",
"pwntools",
"PySocks",
"requests",
"ropper",
]
classifiers = [
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "https://github.com/RoderickChan/pwncli"
[project.scripts]
pwncli = "pwncli.cli:cli"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["pwncli*"]
[tool.setuptools.package-data]
pwncli = ["conf/*"]