-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
83 lines (81 loc) · 2.6 KB
/
Copy pathsetup.py
File metadata and controls
83 lines (81 loc) · 2.6 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
from setuptools import setup, find_packages
with open("PIPREADME.md", "r", encoding="utf-8") as fh:
pip_description = fh.read()
setup(
name="intelli",
version="2.0.1",
author="Intellinode",
author_email="admin@intellinode.ai",
description="Build AI agents and MCPs with Intellinode.",
long_description=pip_description,
long_description_content_type="text/markdown",
url="https://www.intellinode.ai/",
project_urls={
"Source Code": "https://github.com/intelligentnode/Intelli",
},
packages=find_packages(exclude=["test", "test.*"]),
package_data={"": ["*.in"]},
python_requires=">=3.10",
install_requires=[
"python-dotenv>=1.0.0",
"networkx>=3.2.0",
# Core HTTP client used by every provider wrapper (was previously undeclared).
"requests>=2.31,<3",
],
extras_require={
"visual": ["matplotlib>=3.6.0"],
"offline": ["keras-nlp", "keras>=3", "librosa", "keras-hub", "tensorflow-text"],
"llamacpp": ["llama-cpp-python>=0.3.7", "huggingface_hub>=0.28.1"],
"mcp": ["mcp[ws,cli]>=1.9,<2", "pandas>=2,<3"],
"dataframe": ["pandas>=2,<3", "polars>=0.19.0"],
"speech": [
"speechmatics-batch",
"speechmatics-rt",
"websockets",
"librosa",
"soundfile",
"numpy",
"openai>=2.5.0",
],
"computer": ["playwright>=1.40"],
"azure-assistant": ["openai>=2.5.0,<3"],
"azure-agent": [
"azure-ai-projects>=2.0,<3",
"azure-identity>=1.17,<2",
"openai>=2.5.0,<3",
],
"agent": [
"azure-ai-projects>=2.0,<3",
"azure-identity>=1.17,<2",
"openai>=2.5.0,<3",
"google-adk>=2.9,<3",
"google-cloud-aiplatform[agent-engines]>=1.148.1,<2",
"google-auth>=2.47,<3"
],
"all": [
"matplotlib>=3.6.0",
"numpy>=1.26.0,<3",
"keras-nlp",
"keras>=3",
"librosa",
"keras-hub",
"tensorflow-text",
"llama-cpp-python>=0.3.7",
"huggingface_hub>=0.28.1",
"mcp[ws,cli]>=1.9,<2",
"playwright>=1.40",
"pandas>=2,<3",
"polars",
"speechmatics-batch",
"speechmatics-rt",
"websockets",
"librosa",
"soundfile",
"numpy",
"openai>=2.5.0,<3",
"azure-ai-projects>=2.0,<3",
"azure-identity>=1.17,<2",
],
"dev": ["pytest>=7.0.0"],
},
)