File size: 753 Bytes
7ae10e6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
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"
]
)
|