ATC_Nima_Model / pyproject.toml
TheNormsOfIntelligence's picture
Restructure into nima_unified package + add model card
56f9533 verified
Raw
History Blame Contribute Delete
1.93 kB
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nima-unified"
version = "1.0.0"
description = "NIMA Unified Model — ATC-native cognitive pipeline that lives INSIDE a transformer's forward pass."
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Norman dela Paz-Tabora", email = "norman@thenormsofintelligence.ai" }
]
keywords = [
"consciousness",
"acknowledgement-theory",
"ATC",
"phi-4-mini",
"qualia",
"neurotransmitter-shunt",
"BELBIC",
"cognitive-architecture",
"artificial-consciousness",
]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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",
]
[project.optional-dependencies]
voice = ["openai-whisper>=20231117", "TTS>=0.22.0", "sounddevice>=0.4.6", "soundfile>=0.12.1"]
test = ["pytest>=7.4.0", "pytest-asyncio>=0.21.0"]
[project.urls]
"Homepage" = "https://huggingface.co/TheNormsOfIntelligence/ATC_Nima_Model"
"Repository" = "https://huggingface.co/TheNormsOfIntelligence/ATC_Nima_Model"
"Companion Model" = "https://huggingface.co/TheNormsOfIntelligence/Acknowledgement_Theory_of_Consciousness"
"Live Demo" = "https://huggingface.co/spaces/TheNormsOfIntelligence/MicrosoftPhi3Mini"
"Author" = "https://huggingface.co/TheNormsOfIntelligence"
[project.scripts]
nima-deploy = "nima_unified.deploy:main"
[tool.setuptools.packages.find]
include = ["nima_unified*"]
exclude = ["tests*", "examples*"]