-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 731 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 731 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
from setuptools import setup, find_packages
setup(
name="wraith",
version="1.0.0",
description="Credential Exposure Monitor — breach DB and paste site monitoring for red teams",
author="xdrew87",
license="MIT",
python_requires=">=3.10",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"aiohttp>=3.9.0",
"click>=8.1.0",
"colorama>=0.4.6",
"pyyaml>=6.0.1",
"python-dotenv>=1.0.0",
"SQLAlchemy>=2.0.0",
"rich>=13.0.0",
"aiofiles>=23.0.0",
"flask>=3.0.0",
"flask-cors>=4.0.0",
],
entry_points={
"console_scripts": [
"wraith=main:cli",
],
},
)