This repository was archived by the owner on Mar 7, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
69 lines (65 loc) · 2.47 KB
/
setup.py
File metadata and controls
69 lines (65 loc) · 2.47 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
#!/usr/bin/env python
"""
Setup script for Agent Control Plane
Note: This file is maintained for backward compatibility.
Modern installations should use pyproject.toml directly.
"""
from setuptools import setup, find_packages
from pathlib import Path
# Read the README file
readme_file = Path(__file__).parent / "README.md"
long_description = readme_file.read_text(encoding="utf-8") if readme_file.exists() else ""
setup(
name="agent-control-plane",
version="1.2.0",
author="Imran Siddique",
author_email="[email protected]",
description="A deterministic kernel for zero-violation governance in agentic AI systems",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/imran-siddique/agent-control-plane",
project_urls={
"Bug Tracker": "https://github.com/imran-siddique/agent-control-plane/issues",
"Documentation": "https://github.com/imran-siddique/agent-control-plane/tree/main/docs",
"Source Code": "https://github.com/imran-siddique/agent-control-plane",
"Paper": "https://arxiv.org/abs/XXXX.XXXXX",
},
package_dir={"": "src"},
packages=find_packages(where="src"),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Security",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
],
python_requires=">=3.8",
install_requires=[
# No external dependencies - uses only Python standard library
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
],
"hf": [
"huggingface_hub>=0.20.0",
"datasets>=2.14.0",
],
},
keywords="ai agents governance control-plane safety policy agentic-ai llm guardrails deterministic",
zip_safe=False,
)