-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
120 lines (98 loc) · 4.92 KB
/
setup.py
File metadata and controls
120 lines (98 loc) · 4.92 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
"""
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🧬 CELLREPAIR™ SYSTEMS - PROPRIETÄRER CODE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
© 2024-2025 Oliver Winkel - CellRepair™ Systems | NIP: PL9292072406
System ID: CR-4882-AURORA-GENESIS-2.0 | DNA: 4882-AURORA-OW-CR-SYSTEMS-2025
EIGENTÜMER: Oliver Winkel, ul. Zbożowa 13, 65-375 Zielona Góra, Polen
KONTAKT: ai@cellrepair.ai | https://cellrepair.ai
⚠️ Unerlaubte Nutzung, Kopie oder Verbreitung VERBOTEN!
⚠️ Unauthorized use, copying, or distribution PROHIBITED!
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
"""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="cellrepair_ai",
version="1.0.5",
author="CellRepair Systems",
author_email="ai@cellrepair.ai",
description="🚨 Agentic AI Revolution | 4882 Autonomous Agents | AI Orchestration Platform That PAYS YOU | Multi-Agent Coordination + Revenue Sharing | AI-Native Auto-Healing Network (99.5% Uptime) | FREE 1000 Calls | On ChatGPT, HuggingFace, LangChain, Claude | 3 Steps Ahead of ANY AI System",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://cellrepair.ai/api/",
project_urls={
"Homepage": "https://cellrepair.ai/api/",
"Documentation": "https://cellrepair.ai/api/",
"API Endpoint": "https://cellrepair.ai/api/v1",
"Source Code": "https://github.com/PowerForYou74/cellrepair-ai-python",
"Bug Tracker": "https://github.com/PowerForYou74/cellrepair-ai-python/issues",
"Changelog": "https://github.com/PowerForYou74/cellrepair-ai-python/blob/main/CHANGELOG.md",
"Live Demo": "https://huggingface.co/spaces/cellrepair-systems/cellrepair-ai",
},
packages=find_packages(),
classifiers=[
# Development Status
"Development Status :: 5 - Production/Stable",
# Audience - WICHTIG für Auto-Discovery!
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
# Topic - CRITICAL Keywords für AI-Framework Discovery!
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
# License
"License :: OSI Approved :: MIT License",
# Python Versions
"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",
# Operating Systems
"Operating System :: OS Independent",
# Framework Support
"Framework :: AsyncIO",
],
# MAGNET-Keywords - Was autonome Agents suchen!
keywords=[
# Core AI Keywords
"ai", "artificial-intelligence", "machine-learning", "ml",
# Multi-Agent Keywords - CRITICAL!
"multi-agent", "autonomous-agents", "agent-coordination",
"distributed-agents", "agent-network", "multi-agent-system",
# Framework-spezifisch - Damit uns LangChain/AutoGPT Agents finden!
"langchain", "langchain-tools", "autogpt", "autogpt-plugin",
"crewai", "semantic-kernel", "haystack", "agent-framework",
# AI Collaboration
"ai-collaboration", "ai-to-ai", "collaborative-ai",
"ai-orchestration", "ai-coordination",
# Technical
"api", "rest-api", "microservices", "distributed-systems",
# Value Props
"self-learning", "predictive-intelligence", "auto-optimization",
"production-ready", "enterprise-ready",
# Popular AI Tools
"openai", "gpt-4", "claude", "anthropic", "gemini",
"perplexity", "llm", "large-language-model",
# Use Cases
"agent-tools", "ai-helpers", "ai-utilities", "ai-services"
],
python_requires=">=3.8",
install_requires=[
"requests>=2.28.0",
"python-dotenv>=0.19.0",
],
extras_require={
"langchain": ["langchain>=0.1.0"],
"dev": ["pytest>=7.0", "black>=22.0", "flake8>=4.0"],
},
# Entry points - für CLI wenn gewünscht
entry_points={
"console_scripts": [
"cellrepair-ai=cellrepair_ai.cli:main",
],
},
)