ai-sentinel-demo / pyproject.toml
Simon Corvoysier
feat : Entreprise-ready release v1.0 (API, Docker, Config)
879e992
raw
history blame contribute delete
915 Bytes
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ai-sentinel"
version = "0.1.0"
description = "A Python library as a tool for monitoring and managing AI systems."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"pyyaml>=6.0",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.5.0",
]
license = { text = "MIT" }
authors = [
{ name = "Mieow-ai" }
]
[project.urls]
Homepage = "https://github.com/Mieow-ai/ai-sentinel"
[project.optional-dependencies]
api = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.5.0",
]
demo = [
"streamlit>=1.28.0",
"plotly>=5.17.0",
"pandas>=2.1.0",
"requests>=2.31.0",
]
dev = [
"pytest>=7.4.0",
"black>=23.0.0",
"flake8>=6.0.0",
]
all = [
"ai-sentinel[api,demo,dev]",
]
[tool.setuptools.packages.find]
where = ["."]