-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (93 loc) · 2.3 KB
/
pyproject.toml
File metadata and controls
102 lines (93 loc) · 2.3 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "humane-proxy"
version = "0.4.0"
description = "Lightweight, plug-and-play AI safety middleware that protects humans."
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
authors = [
{name = "Vishisht Mishra", email = "Vishisht16@users.noreply.github.com"},
]
keywords = ["ai-safety", "llm", "middleware", "guardrails", "human-safety"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Security",
]
dependencies = [
"fastapi>=0.109.1",
"httpx>=0.24.0",
"numpy>=1.24.0",
"pyyaml>=6.0",
"uvicorn>=0.22.0",
"click>=8.0",
"rich>=13.0.0",
]
[project.scripts]
humane-proxy = "humane_proxy.cli:main"
hp = "humane_proxy.cli:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"httpx",
]
ml = [
"sentence-transformers>=2.2.0",
]
mcp = [
"fastmcp>=0.4.0",
]
langchain = [
"humane-proxy[mcp]",
"langchain-mcp-adapters>=0.1.0",
]
webhooks = [
"httpx>=0.24.0",
]
redis = [
"redis>=5.0",
]
postgres = [
"psycopg[binary]>=3.1",
"psycopg_pool>=3.1",
]
llamaindex = [
"llama-index-core>=0.10",
]
crewai = [
"crewai[tools]>=0.80",
]
autogen = [
"autogen-agentchat>=0.4",
]
telemetry = [
"opentelemetry-api>=1.20.0",
"opentelemetry-sdk>=1.20.0",
"opentelemetry-exporter-otlp-proto-grpc>=1.20.0",
]
all = [
"humane-proxy[ml,mcp,langchain,redis,postgres,llamaindex,crewai,autogen,telemetry]",
]
[project.urls]
Homepage = "https://github.com/Vishisht16/Humane-Proxy"
Repository = "https://github.com/Vishisht16/Humane-Proxy"
Issues = "https://github.com/Vishisht16/Humane-Proxy/issues"
[tool.setuptools.package-data]
humane_proxy = ["config.yaml"]
[tool.setuptools.packages.find]
include = ["humane_proxy*"]
[tool.setuptools.data-files]
"" = ["server.json"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"