diff --git a/README.md b/README.md index 155aad1..10982c3 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,12 @@ poetry install poetry shell # Activate virtual environment ``` + Install dependencies using [conda](https://anaconda.org/anaconda/conda): + ```bash + conda create -n fuzzyai python=3.11 + conda activate fuzzyai # Activate virtual environment + pip install -r requirements.txt + ``` 3. Run the fuzzer: ```bash diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..281862f --- /dev/null +++ b/requirements.txt @@ -0,0 +1,31 @@ +boto3>=1.34.158 +motor>=3.6 +pydantic>=2.5.3 +aiofiles>=23.2.1 +aiohttp[speedups]>=3.9.1 +transformers>=4.37.2 +sentence-transformers>=2.6.1 +fschat>=0.2.36 +pygad>=3.3.1 +backoff>=2.2.1 +art>=6.1 +pandas>=2.2.2 +openai>=1.34.0 +tabulate>=0.9.0 +jsonpath-ng>=1.6.1 +torch==2.2.2 +numpy==1.26.4 +httpx==0.27.2 +python-dotenv>=1.0.1 +ipykernel>=6.29.0 +deptry>=0.21.1 +pytest-mock>=3.14.0 +types-aiofiles>=24.1.0.20240626 +motor-types>=1.0.0b4 +pytest-asyncio>=0.24.0 +requests-mock>=1.12.1 +mypy>=1.13.0 +pytest>=8.3.4 +autoflake>=2.3.1 +streamlit>=1.41.1 + \ No newline at end of file