-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (47 loc) · 1.23 KB
/
Copy pathsetup.py
File metadata and controls
51 lines (47 loc) · 1.23 KB
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
41
42
43
44
45
46
47
48
49
50
51
from setuptools import setup
PACKAGES = [
"moonshine",
"moonshine.agents",
"moonshine.agent_runtime",
"moonshine.gateway",
"moonshine.moonshine_cli",
"moonshine.skills",
"moonshine.storage",
"moonshine.tools",
]
setup(
name="moonshine",
version="0.1.0",
description="Linux-first math research agent harness with traceable storage",
python_requires=">=3.8",
packages=PACKAGES,
package_dir={"moonshine": "."},
include_package_data=True,
package_data={
"moonshine": [
"README.md",
"assets/**/*",
"memory/**/*",
"projects/**/*",
]
},
install_requires=[
"tiktoken>=0.7.0",
"lancedb>=0.14.0",
"chromadb>=0.5.0",
"langgraph>=0.2.0",
],
extras_require={
"tokenizer": ["tiktoken>=0.7.0"],
"lancedb": ["lancedb>=0.14.0"],
"chromadb": ["chromadb>=0.5.0"],
"vector": ["lancedb>=0.14.0", "chromadb>=0.5.0"],
"workflow": ["langgraph>=0.2.0"],
"all": ["tiktoken>=0.7.0", "lancedb>=0.14.0", "chromadb>=0.5.0", "langgraph>=0.2.0"],
},
entry_points={
"console_scripts": [
"moonshine=moonshine.cli:main",
]
},
)