-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 890 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 890 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
[project]
name = "shellerator"
version = "1.1.0"
description = "A simple CLI tool for the generation of bind, reverse and webshells in multiple languages"
readme = "README.md"
authors = [{name = "Shutdown"}]
requires-python = ">=3.6"
dependencies = [
"colorama",
"console-menu",
"psutil",
"simple-term-menu",
]
classifiers=[
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Security"
]
[project.scripts]
shellerator = "shellerator:main"
[project.urls]
homepage = "https://github.com/ShutdownRepo/shellerator"
issues = "https://github.com/ShutdownRepo/shellerator/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"shellerator.py",
"data/*.json"
]