-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
142 lines (131 loc) · 4.9 KB
/
setup.py
File metadata and controls
142 lines (131 loc) · 4.9 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
"""
Copyright (C) 2025 Mahesh Vaijainthymala Krishnamoorthy (Mahesh Vaikri)
This file is part of MAPLE - Multi Agent Protocol Language Engine.
MAPLE - Multi Agent Protocol Language Engine is free software: you can redistribute it and/or
modify it under the terms of the GNU Affero General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later version.
MAPLE - Multi Agent Protocol Language Engine is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have
received a copy of the GNU Affero General Public License along with MAPLE - Multi Agent Protocol
Language Engine. If not, see <https://www.gnu.org/licenses/>.
"""
# setup.py
# Creator: Mahesh Vaikri
#!/usr/bin/env python3
"""
MAPLE - Multi Agent Protocol Language Engine
Created by: Mahesh Vaijainthymala Krishnamoorthy (Mahesh Vaikri)
The most advanced multi-agent communication protocol with:
- Advanced Resource Management
- Type-safe Result<T,E> Error Handling
- Link Identification Security
- Multi-Agent Communication
"""
from setuptools import setup, find_packages
import os
import sys
# Ensure we're running on a supported Python version
if sys.version_info < (3, 8):
sys.exit("MAPLE requires Python 3.8 or higher")
# Get the long description from README
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
# Get version from VERSION file
with open(os.path.join(here, "VERSION"), encoding="utf-8") as f:
version = f.read().strip()
setup(
name="maple-oss",
version=version,
author="Mahesh Vaijainthymala Krishnamoorthy",
author_email="mahesh@mapleagent.org",
maintainer="Mahesh Vaikri",
maintainer_email="mahesh@mapleagent.org",
description="Multi Agent Protocol Language Engine - Advanced multi-agent communication framework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/maheshvaikri-code/maple-oss",
project_urls={
"Documentation": "https://mapleagent.org/docs",
"Issue Tracker": "https://github.com/maheshvaikri-code/maple-oss/issues",
"Discussions": "https://github.com/maheshvaikri-code/maple-oss/discussions",
"Source Code": "https://github.com/maheshvaikri-code/maple-oss",
},
packages=find_packages(exclude=["tests*", "demo_package*", "LAUNCH*"]),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Distributed Computing",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires=">=3.8",
install_requires=[
"asyncio-mqtt>=0.11.0",
"cryptography>=41.0.0",
"websockets>=11.0.0",
"pydantic>=2.0.0",
"python-dateutil>=2.8.0",
"typing-extensions>=4.0.0;python_version<'3.10'",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
"isort>=5.12.0",
"bandit>=1.7.0",
"pre-commit>=3.0.0",
],
"docs": [
"sphinx>=6.0.0",
"sphinx-rtd-theme>=1.3.0",
"myst-parser>=2.0.0",
],
"performance": [
"uvloop>=0.17.0;platform_system!='Windows'",
"orjson>=3.8.0",
"msgpack>=1.0.0",
],
"security": [
"cryptography[ssh]>=41.0.0",
"pyjwt>=2.8.0",
],
"llm": [
"openai>=1.0.0",
"anthropic>=0.20.0",
],
"autonomy": [
"openai>=1.0.0",
"anthropic>=0.20.0",
],
},
entry_points={
"console_scripts": [
"maple=maple.cli:main",
],
},
include_package_data=True,
package_data={
"maple": ["py.typed"],
},
keywords=[
"multi-agent", "agent-communication", "distributed-systems",
"ai-agents", "protocol", "maple", "automation",
"resource-management", "error-handling", "security"
],
zip_safe=False,
)