File size: 1,105 Bytes
ca83593
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from setuptools import setup, find_packages

setup(
    name="iamsentinel",
    version="1.0.0",
    description="OpenEnv environment for IAM security analysis — misconfiguration detection, privilege escalation, attack attribution",
    author="IAMSentinel Team",
    license="MIT",
    packages=find_packages(),
    python_requires=">=3.11",
    install_requires=[
        "pydantic>=2.0,<3.0",
        "networkx>=3.2",
        "openai>=1.30",
        "pyyaml>=6.0",
    ],
    extras_require={
        "server": ["fastapi>=0.111", "uvicorn[standard]>=0.29"],
        "ui":     ["gradio>=4.36"],
        "dev":    ["pytest>=8.0", "pytest-asyncio"],
    },
    entry_points={
        "console_scripts": [
            "iamsentinel-baseline=scripts.baseline_agent:main",
        ]
    },
    classifiers=[
        "Development Status :: 4 - Beta",
        "Intended Audience :: Science/Research",
        "Topic :: Security",
        "Topic :: Scientific/Engineering :: Artificial Intelligence",
        "License :: OSI Approved :: MIT License",
        "Programming Language :: Python :: 3.11",
    ],
)