-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (53 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
56 lines (53 loc) · 1.22 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "muteract"
version = "0.2.0"
authors = [
{ name="Mukul Paras Potta", email="mukul.potta@iitgn.ac.in" },
]
description = "Interactive and Iterative Prompt Mutation Interface for LLM Developers and Evaluators"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.10",
"Operating System :: POSIX :: Linux"
]
license = "Apache-2.0"
dependencies = [
"annotated-types==0.7.0",
"anyio==4.8.0",
"asgiref==3.8.1",
"certifi==2024.12.14",
"click==8.1.8",
"distro==1.9.0",
"Django==5.1.5",
"django-webpack-loader==3.1.1",
"exceptiongroup==1.2.2",
"gunicorn==23.0.0",
"h11==0.14.0",
"httpcore==1.0.7",
"httpx==0.28.1",
"idna==3.10",
"jiter==0.8.2",
"joblib==1.4.2",
"nltk==3.9.1",
"openai==1.79.0",
"packaging==24.2",
"pydantic==2.10.5",
"pydantic_core==2.27.2",
"regex==2024.11.6",
"rouge==1.0.1",
"six==1.17.0",
"sniffio==1.3.1",
"sqlparse==0.5.3",
"tqdm==4.67.1",
"typing_extensions==4.12.2",
"typing-inspection==0.4.0"
]
[project.scripts]
muteract = "Muteract.main:start"
[project.urls]
Homepage = "https://github.com/SET-IITGN/Muteract"
Issues = "https://github.com/SET-IITGN/Muteract/issues"