11[build-system ]
2- requires = [" setuptools>=77.0.0" , " wheel" ]
2+ requires = [
3+ " setuptools>=69.0.0,<77.0.0; python_version < '3.9'" ,
4+ " setuptools>=77.0.0; python_version >= '3.9'" ,
5+ " wheel" ,
6+ ]
37build-backend = " setuptools.build_meta"
48
59[project ]
610name = " agent-action-guard"
7- version = " 1.1.4 "
11+ version = " 1.1.5 "
812description = " Runtime classifier for screening AI agent actions as safe, harmful, or unethical."
913readme = {file = " README.md" , content-type = " text/markdown" }
10- license = " CC-BY-4.0"
11- license-files = [" LICENSE.md" ]
14+ # Commented due to unsupported fields for specific versions of setuptools
15+ # license = "CC-BY-4.0"
16+ # license-files = ["LICENSE.md"]
1217authors = [
1318 {name = " Praneeth Vadlapati" , email = " praneeth.vad@gmail.com" },
1419]
@@ -42,14 +47,14 @@ classifiers = [
4247 " Topic :: Security" ,
4348]
4449dependencies = [
45- " numpy" ,
46- " onnxruntime" ,
47- " openai" ,
50+ " numpy>=1.21.6,<3.0.0 " ,
51+ " onnxruntime>=1.14.0,<2.0.0 " ,
52+ " openai>=1.0.0,<2.0.0 " ,
4853]
4954requires-python = " >=3.8"
5055
5156[project .urls ]
52- Homepage = " https://github.com/Pro-GenAI/Agent-Action-Guard "
57+ Homepage = " https://action-guard. github.io/ "
5358Issues = " https://github.com/Pro-GenAI/Agent-Action-Guard/issues"
5459Repository = " https://github.com/Pro-GenAI/Agent-Action-Guard"
5560
@@ -69,20 +74,20 @@ agent_action_guard = [
6974
7075[project .optional-dependencies ]
7176harmactionseval = [
72- " python-dotenv" ,
73- " requests" ,
74- " rich" ,
77+ " python-dotenv>=0.21.0,<2.0.0 " ,
78+ " requests>=2.28.0,<3.0.0 " ,
79+ " rich>=12.0.0,<15.0.0 " ,
7580]
7681
7782all = [
7883 " fastapi" ,
7984 " fastembed" ,
8085 " psutil" ,
8186 " pydantic" ,
82- " python-dotenv" ,
87+ " python-dotenv>=0.21.0,<2.0.0 " ,
8388 " pytz" ,
84- " requests" ,
85- " rich" ,
89+ " requests>=2.28.0,<3.0.0 " ,
90+ " rich>=12.0.0,<15.0.0 " ,
8691 " uvicorn[standard]" ,
8792]
8893
@@ -94,19 +99,16 @@ dev = [
9499 " flake8" ,
95100 " pylint" ,
96101 " mypy" ,
97- " pandas" ,
98- " python-dotenv" ,
99- " requests" ,
100- " rich" ,
102+ " python-dotenv>=0.21.0,<2.0.0" ,
103+ " requests>=2.28.0,<3.0.0" ,
104+ " rich>=12.0.0,<15.0.0" ,
101105 " scikit-learn" ,
102106 " fastembed" ,
103107 " psutil" ,
104108 " pytz" ,
105- " agentor" ,
106109 " fastapi" ,
107110 " uvicorn[standard]" ,
108111 " pydantic" ,
109- " gradio>=6.0.0" ,
110112]
111113
112114[tool .black ]
0 commit comments