| [build-system] |
| requires = ["setuptools>=45", "wheel"] |
| build-backend = "setuptools.build_meta" |
|
|
| [project] |
| name = "openenv-redteampentestlab" |
| version = "0.1.0" |
| description = "Automated penetration testing simulation environment for OpenEnv" |
| requires-python = ">=3.10" |
| dependencies = [ |
| "openenv-core[core]>=0.2.2", |
| "fastapi>=0.100.0", |
| "uvicorn>=0.23.0", |
| "pydantic>=2.0.0", |
| "openai>=1.0.0", |
| ] |
|
|
| [project.optional-dependencies] |
| dev = ["pytest>=8.0.0", "pytest-cov>=4.0.0"] |
|
|
| [project.scripts] |
| server = "server.app:main" |
|
|
| [tool.setuptools.packages.find] |
| where = ["."] |
| include = ["*"] |