-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 684 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (30 loc) · 684 Bytes
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
from setuptools import setup, find_packages
setup(
name="devbrain-cli",
version="0.1.0",
description="The Persistent Memory Layer for Software Development",
author="DevBrain Team",
packages=find_packages(),
py_modules=[
"devbrain",
"devbrain_core",
"devbrain_service",
"devbrain_bridge",
"devbrain_mcp",
"harvester",
"exporter",
"get_dashboard_data"
],
install_requires=[
"cognee>=1.2.2",
"fastapi",
"uvicorn",
"pydantic",
"watchdog"
],
entry_points={
"console_scripts": [
"devbrain=devbrain:main",
],
},
)