-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 717 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (30 loc) · 717 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
from setuptools import setup, find_packages
setup(
name="nara",
version="0.1.0",
description="Autonomous AI-powered penetration testing CLI",
license="MIT",
packages=find_packages(),
package_data={
"nara": [
"docker/Dockerfile",
"docker/start_vnc.sh",
"payloads/assets/*",
],
},
python_requires=">=3.10",
install_requires=[
"anthropic>=0.40.0",
"ollama>=0.4.0",
"python-dotenv>=1.0.0",
"rich>=13.0.0",
"prompt_toolkit>=3.0.0",
"requests>=2.31.0",
"openai>=1.0.0",
],
entry_points={
"console_scripts": [
"nara=nara.cli:main",
]
},
)