ever-brain / pyproject.toml
AlexKurian's picture
feat: implement landing page and documentation site with CLI integration and status command
ddb260a
Raw
History Blame Contribute Delete
934 Bytes
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ever-brain-cli"
version = "0.1.0"
description = "A Cognition Operating System for AI Coding Agents"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "Ever Brain Team", email = "alexanderkurian777@gmail.com"},
]
license = {text = "MIT"}
keywords = ["ai", "agents", "cognition", "memory", "cli"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"typer>=0.9.0",
"rich>=13.0.0",
]
[project.urls]
"Homepage" = "https://huggingface.co/spaces/projectsorg/ever-brain"
[project.scripts]
ever-brain = "brain.cli:app"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["brain*"]
[tool.setuptools.package-data]
"brain" = ["templates/**/*"]