-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 726 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 726 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
from setuptools import setup, find_packages
setup(
name="shellweaver",
version="2.0.0",
description="Beautifully colored CLI for managing web shells in CTF competitions.",
author="ShellWeaver Contributors",
python_requires=">=3.8",
packages=find_packages(),
install_requires=[
"requests>=2.31.0",
"urllib3>=2.0.0",
"rich>=13.7.0",
"prompt_toolkit>=3.0.43",
],
entry_points={
"console_scripts": [
"shellweaver=shellweaver.cli:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Environment :: Console",
"Topic :: Security",
"License :: OSI Approved :: MIT License",
],
)