-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
65 lines (64 loc) · 2.31 KB
/
setup.py
File metadata and controls
65 lines (64 loc) · 2.31 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
from setuptools import setup, find_packages
setup(
name='helloagi',
version='0.5.0',
description='The first open-source AGI runtime with governed autonomy, evolving identity, and anticipatory intelligence.',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='Eng. Mohammed Mazyad Alkhaldi',
author_email='helloagi@proton.me',
url='https://github.com/mmsk2007/helloagi',
license='MIT',
package_dir={'': 'src'},
packages=find_packages(where='src'),
python_requires='>=3.9',
install_requires=[
'anthropic>=0.30',
'anyio>=4.0',
'croniter>=2.0',
'requests>=2.28',
'tzdata>=2024.1',
],
extras_require={
'rich': ['rich>=13.0'],
'telegram': ['python-telegram-bot>=20.0'],
'discord': ['discord.py>=2.0'],
'voice': [
'google-genai>=1.0',
'sounddevice>=0.5',
"SpeechRecognition>=3.10; platform_system != 'Windows'",
"pyttsx3>=2.90; platform_system != 'Windows'",
],
'embeddings': ['google-genai>=1.0'],
'claude-sdk': ['claude-agent-sdk>=0.1'],
'all': [
'rich>=13.0',
'python-telegram-bot>=20.0',
'discord.py>=2.0',
'google-genai>=1.0',
'sounddevice>=0.5',
"SpeechRecognition>=3.10; platform_system != 'Windows'",
"pyttsx3>=2.90; platform_system != 'Windows'",
'claude-agent-sdk>=0.1',
],
'dev': ['pytest>=7.0', 'pytest-asyncio>=0.21'],
},
entry_points={
'console_scripts': [
'helloagi=agi_runtime.cli:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Application Frameworks',
],
keywords='agi agent autonomous governance safety tools llm claude',
)