File size: 3,360 Bytes
b62e54b |
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 |
"""
COGNITIVE-CORE: Universal Cognitive Architecture Framework
===========================================================
A robust, agnostic framework for building cognitive AI models.
Supports vision, language, world model, audio, and multimodal architectures.
Installation:
pip install cognitive-core
Or from HuggingFace:
pip install git+https://huggingface.co/amewebstudio/cognitive-core
Copyright © 2026 Mike Amega (Logo) - Ame Web Studio
License: Proprietary - All Rights Reserved
"""
from setuptools import setup, find_packages
with open("cognitive-core/README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="cognitive-core",
version="1.0.0",
author="Mike Amega",
author_email="contact@amewebstudio.com",
description="Universal Cognitive Architecture Framework for AI Models",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Volgat/nexus-standardisation",
project_urls={
"HuggingFace": "https://huggingface.co/amewebstudio/cognitive-core",
"Documentation": "https://github.com/Volgat/nexus-standardisation#readme",
"Bug Tracker": "https://github.com/Volgat/nexus-standardisation/issues",
},
packages=find_packages(),
package_dir={"cognitive_core": "cognitive-core"},
py_modules=["cognitive_core"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: Other/Proprietary License",
"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 :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.8",
install_requires=[
"torch>=2.0.0",
"transformers>=4.35.0",
"datasets>=2.14.0",
"huggingface_hub>=0.19.0",
"accelerate>=0.24.0",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
],
"training": [
"wandb>=0.15.0",
"tensorboard>=2.14.0",
],
"vision": [
"torchvision>=0.15.0",
"pillow>=9.0.0",
],
"audio": [
"torchaudio>=2.0.0",
"librosa>=0.10.0",
],
"all": [
"wandb>=0.15.0",
"tensorboard>=2.14.0",
"torchvision>=0.15.0",
"pillow>=9.0.0",
"torchaudio>=2.0.0",
"librosa>=0.10.0",
],
},
keywords=[
"cognitive-ai",
"neural-network",
"transformer",
"llm",
"world-model",
"multimodal",
"huggingface",
"pytorch",
"deep-learning",
"neurogenesis",
"memory-system",
],
include_package_data=True,
zip_safe=False,
)
|