-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (54 loc) · 1.99 KB
/
setup.py
File metadata and controls
58 lines (54 loc) · 1.99 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
"""Setup configuration for prompt-siege."""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
with open("requirements.txt", "r", encoding="utf-8") as f:
requirements = [line.strip() for line in f if line.strip() and not line.startswith("#")]
setup(
name="prompt-siege",
version="0.9.0",
author="BypassCore",
author_email="contact@bypasscore.com",
description="AI/LLM Safety Testing & Red Teaming Framework for authorized security evaluation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://bypasscore.com",
project_urls={
"Documentation": "https://bypasscore.com/docs/prompt-siege",
"Source": "https://github.com/bypasscore/prompt-siege",
"Bug Tracker": "https://github.com/bypasscore/prompt-siege/issues",
"Blog": "https://bypasscore.com/blog",
},
packages=find_packages(),
python_requires=">=3.9",
install_requires=requirements,
extras_require={
"dev": [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"black>=23.0",
"ruff>=0.1.0",
"mypy>=1.5",
],
},
entry_points={
"console_scripts": [
"prompt-siege=cli:main",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Security",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
],
keywords="ai safety testing red-team llm security evaluation prompt-injection",
)