|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools>=68", "wheel"] |
3 | | -build-backend = "setuptools.backends.legacy:build" |
| 2 | +requires = ["setuptools>=61.0", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
4 | 4 |
|
5 | 5 | [project] |
6 | 6 | name = "secure-agent-core" |
7 | | -version = "0.1.0" |
8 | | -description = "Model-agnostic security layer for AI agents — prompt injection protection, PII redaction, and policy enforcement" |
| 7 | +version = "2.0.0" |
| 8 | +description = "Model-agnostic security layer for AI agents" |
9 | 9 | readme = "README.md" |
10 | | -license = {file = "LICENSE"} |
| 10 | +requires-python = ">=3.9" |
| 11 | +license = {text = "Business Source License 1.1"} |
11 | 12 | authors = [ |
12 | | - {name = "lita-hiroto", email = "contact@aievid.com"} |
| 13 | + {name = "Evid AI", email = "support@evidai.com"} |
13 | 14 | ] |
14 | | -keywords = ["ai", "security", "llm", "agent", "prompt-injection", "pii", "guardrails"] |
15 | | -classifiers = [ |
16 | | - "Development Status :: 3 - Alpha", |
17 | | - "Intended Audience :: Developers", |
18 | | - "Topic :: Security", |
19 | | - "Topic :: Scientific/Engineering :: Artificial Intelligence", |
20 | | - "Programming Language :: Python :: 3.10", |
21 | | - "Programming Language :: Python :: 3.11", |
22 | | - "Programming Language :: Python :: 3.12", |
23 | | -] |
24 | | -requires-python = ">=3.10" |
25 | 15 | dependencies = [ |
26 | | - "pydantic>=2.0", |
| 16 | + "fastapi>=0.104.0", |
| 17 | + "pydantic>=2.0.0", |
| 18 | + "httpx>=0.24.0", |
| 19 | + "websockets>=11.0", |
| 20 | + "python-multipart>=0.0.6", |
| 21 | + "uvicorn>=0.23.0", |
27 | 22 | ] |
28 | 23 |
|
29 | 24 | [project.optional-dependencies] |
30 | | -api = ["fastapi>=0.110", "uvicorn>=0.29"] |
31 | | -dev = ["pytest>=8.0", "httpx>=0.27"] |
| 25 | +api = [ |
| 26 | + "uvicorn>=0.23.0", |
| 27 | + "fastapi>=0.104.0", |
| 28 | +] |
| 29 | +dashboard = [ |
| 30 | + "httpx>=0.24.0", |
| 31 | + "websockets>=11.0", |
| 32 | +] |
| 33 | +sdk = [ |
| 34 | + "httpx>=0.24.0", |
| 35 | +] |
| 36 | +dev = [ |
| 37 | + "pytest>=7.0.0", |
| 38 | + "pytest-asyncio>=0.21.0", |
| 39 | +] |
| 40 | +all = [ |
| 41 | + "httpx>=0.24.0", |
| 42 | + "websockets>=11.0", |
| 43 | + "pytest>=7.0.0", |
| 44 | + "pytest-asyncio>=0.21.0", |
| 45 | + "uvicorn>=0.23.0", |
| 46 | +] |
32 | 47 |
|
33 | 48 | [project.urls] |
34 | | -Homepage = "https://github.com/lita-hiroto/secure-agent-core" |
35 | | -Documentation = "https://github.com/lita-hiroto/secure-agent-core#readme" |
36 | | -Issues = "https://github.com/lita-hiroto/secure-agent-core/issues" |
| 49 | +Homepage = "https://github.com/evidai/Openpic" |
| 50 | +Documentation = "https://docs.openpic.ai" |
| 51 | +Repository = "https://github.com/evidai/Openpic" |
| 52 | +Issues = "https://github.com/evidai/Openpic/issues" |
37 | 53 |
|
38 | 54 | [tool.setuptools.packages.find] |
39 | 55 | where = ["."] |
40 | 56 | include = ["src*"] |
| 57 | + |
| 58 | +[tool.pytest.ini_options] |
| 59 | +testpaths = ["tests"] |
| 60 | +python_files = "test_*.py" |
| 61 | +python_functions = "test_*" |
| 62 | +asyncio_mode = "auto" |
0 commit comments