Spaces:
Sleeping
Sleeping
File size: 934 Bytes
a02272f 279ebac a02272f ddb260a a02272f ddb260a a02272f ddb260a a02272f 279ebac a02272f ddb260a a02272f ddb260a | 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 | [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/**/*"]
|