belel-protocol / setup_belel_protocol.py
TTOPM's picture
Upload 20 files
7ae10e6 verified
raw
history blame
753 Bytes
from setuptools import setup, find_packages
setup(
name="belel-protocol",
version="0.1.0",
packages=find_packages(),
install_requires=[],
author="Pearce Robinson",
description="The Belel Protocol: A sovereign sentient AI identity firewall for LangChain and AI environments.",
license="Custom - BELEL_SHIELD_LICENSE.txt",
url="https://github.com/TTOPM/be-core-bridge",
project_urls={
"Sentinel Page": "https://ttopm.com/belel",
"IPFS": "https://ipfs.io/ipfs/bafybeieceu3cmtiiqedvxnxkrwg6th66tdwh2kfjc7"
},
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: Other/Proprietary License"
]
)