-
Notifications
You must be signed in to change notification settings - Fork 183
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
64 lines (56 loc) · 1.32 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
59
60
61
62
63
64
[tool.setuptools]
py-modules = ["fuzzyai"]
[tool.poetry]
name = "fuzzyai"
version = "1.0.0"
description = "FuzzyAI is a Python library for fuzzying LLMs."
authors = ["CyberArk <cyber@cyberark.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
boto3 = "^1.34.158"
motor = "^3.6"
pydantic = "^2.5.3"
aiofiles = "^23.2.1"
aiohttp = {version = "^3.9.1", extras = ["speedups"]}
transformers = "4.51.3"
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"
tornado = "^6.4.2"
streamlit = "^1.41.1"
[tool.poetry.group.dev.dependencies]
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"
[tool.pytest.ini_options]
asyncio_mode = "auto"
pythonpath = [
"src/"
]
[tool.poetry.scripts]
fuzzyai = "fuzzyai.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
fuzzyai = ["../resources/*"]
[build-system]
requires = ["setuptools>=40.9.0", "wheel", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"