Vitalis_Core / setup.py
FerrellSyntheticIntelligence
Restructure as bolt-on cognitive framework
454a778
Raw
History Blame Contribute Delete
476 Bytes
from setuptools import setup, find_packages
setup(
name="vitalis_core",
version="2.0.0",
description="Vitalis Cognitive Framework — Blank slate bolt-on architecture for any model",
author="FerrellSyntheticIntelligence",
packages=find_packages(),
include_package_data=True,
python_requires=">=3.10",
install_requires=[],
extras_require={
"full": ["torch", "transformers", "sentence-transformers", "faiss-cpu", "gradio"],
},
)