Initial code for CleverClaude
This commit is contained in:
+118
-16
@@ -4,43 +4,139 @@ build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "cleverclaude"
|
||||
version = "0.1.0"
|
||||
description = "A modern Python 3.13 micro-service starter"
|
||||
version = "2.0.0"
|
||||
description = "CleverClaude - Advanced AI Agent Orchestration System"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.13"
|
||||
license = {text = "Apache-2.0"}
|
||||
requires-python = ">=3.11"
|
||||
license = {text = "MIT"}
|
||||
authors = [
|
||||
{name = "CleverThis", email = "jeffrey.freeman@cleverthis.com"},
|
||||
{name = "CleverClaude Team", email = "dev@cleverclaude.ai"},
|
||||
]
|
||||
keywords = [
|
||||
"ai", "agents", "orchestration", "swarm", "mcp", "cleverclaude", "automation",
|
||||
"coordination", "distributed", "async", "neural", "hive-mind"
|
||||
]
|
||||
keywords = ["starter", "template"]
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Environment :: Console",
|
||||
"Environment :: Web Environment",
|
||||
"Framework :: AsyncIO",
|
||||
"Framework :: FastAPI",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: Apache Software License",
|
||||
"Intended Audience :: System Administrators",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
"Programming Language :: Python",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Programming Language :: Python :: 3.13",
|
||||
"Programming Language :: Python :: Implementation :: CPython",
|
||||
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
||||
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||
"Topic :: System :: Distributed Computing",
|
||||
"Typing :: Typed",
|
||||
]
|
||||
|
||||
dependencies = [
|
||||
# Core Framework
|
||||
"fastapi[all]>=0.104.0",
|
||||
"uvicorn[standard]>=0.24.0",
|
||||
"pydantic>=2.5.0",
|
||||
"pydantic-settings>=2.1.0",
|
||||
|
||||
# CLI Framework
|
||||
"click>=8.1.7",
|
||||
"rich>=13.7.0",
|
||||
"textual>=0.45.0",
|
||||
"typer>=0.9.0",
|
||||
|
||||
# Async & Concurrency
|
||||
"asyncio-mqtt>=0.11.1",
|
||||
"aiofiles>=23.2.1",
|
||||
"aioredis>=2.0.1",
|
||||
"httpx>=0.25.2",
|
||||
"websockets>=12.0",
|
||||
|
||||
# Database & Storage
|
||||
"sqlalchemy[asyncio]>=2.0.23",
|
||||
"alembic>=1.13.0",
|
||||
"aiosqlite>=0.19.0",
|
||||
"redis>=5.0.1",
|
||||
|
||||
# Task Processing
|
||||
"celery[redis]>=5.3.4",
|
||||
"dramatiq[redis]>=1.15.0",
|
||||
|
||||
# Monitoring & Observability
|
||||
"structlog>=23.2.0",
|
||||
"prometheus-client>=0.19.0",
|
||||
"opentelemetry-api>=1.21.0",
|
||||
"opentelemetry-sdk>=1.21.0",
|
||||
"opentelemetry-instrumentation>=0.42b0",
|
||||
|
||||
# Security & Auth
|
||||
"pyjwt[crypto]>=2.8.0",
|
||||
"passlib[bcrypt]>=1.7.4",
|
||||
"python-multipart>=0.0.6",
|
||||
|
||||
# Configuration & Serialization
|
||||
"pyyaml>=6.0.1",
|
||||
"toml>=0.10.2",
|
||||
"jsonschema>=4.20.0",
|
||||
|
||||
# Utilities
|
||||
"nanoid>=2.0.0",
|
||||
"python-dateutil>=2.8.2",
|
||||
"psutil>=5.9.6",
|
||||
"tenacity>=8.2.3",
|
||||
|
||||
# MCP Protocol Support
|
||||
"msgpack>=1.0.7",
|
||||
"cbor2>=5.5.0",
|
||||
"orjson>=3.9.10",
|
||||
]
|
||||
|
||||
[project.optional-dependencies]
|
||||
dev = [
|
||||
"uv>=0.8.0",
|
||||
"ruff>=0.4.0",
|
||||
"pyright>=1.1.400",
|
||||
# Testing
|
||||
"pytest>=7.4.3",
|
||||
"pytest-asyncio>=0.21.1",
|
||||
"pytest-cov>=4.1.0",
|
||||
"pytest-mock>=3.12.0",
|
||||
"hypothesis>=6.92.0",
|
||||
"factory-boy>=3.3.0",
|
||||
"behave>=1.2.6",
|
||||
"hypothesis>=6.136.6",
|
||||
"nox>=2025.4.22",
|
||||
"mkdocs-material>=9.6.0",
|
||||
"mike>=2.0.0",
|
||||
|
||||
# Code Quality
|
||||
"ruff>=0.4.0",
|
||||
"mypy>=1.7.1",
|
||||
"pyright>=1.1.400",
|
||||
"pre-commit>=3.8.0",
|
||||
|
||||
# Development Tools
|
||||
"uv>=0.8.0",
|
||||
"nox>=2025.4.22",
|
||||
"ipython>=8.18.1",
|
||||
"jupyter>=1.0.0",
|
||||
"watchfiles>=0.21.0",
|
||||
]
|
||||
|
||||
benchmark = [
|
||||
"locust>=2.18.0",
|
||||
"matplotlib>=3.8.2",
|
||||
"pandas>=2.1.4",
|
||||
"seaborn>=0.13.0",
|
||||
]
|
||||
|
||||
docs = [
|
||||
"mkdocs>=1.5.3",
|
||||
"mkdocs-material>=9.6.0",
|
||||
"mkdocs-mermaid2-plugin>=1.1.1",
|
||||
"mkdocstrings[python]>=0.24.0",
|
||||
"mike>=2.0.0",
|
||||
]
|
||||
|
||||
all = [
|
||||
"cleverclaude[dev,benchmark,docs]",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
@@ -51,6 +147,12 @@ Issues = "https://git.cleverthis.com/cleverthis/base/base-python/issues"
|
||||
|
||||
[project.scripts]
|
||||
cleverclaude = "cleverclaude.cli:main"
|
||||
cc = "cleverclaude.cli:main"
|
||||
|
||||
[project.entry-points.console_scripts]
|
||||
cleverclaude-server = "cleverclaude.server:run_server"
|
||||
cleverclaude-worker = "cleverclaude.worker:run_worker"
|
||||
cleverclaude-monitor = "cleverclaude.monitoring:run_monitor"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["src/cleverclaude"]
|
||||
|
||||
Reference in New Issue
Block a user