Rick8444's picture
Release v2.0.0: Fully executable Python SDK and SOTA Sandbox Engine
fc90843 verified
Raw
History Blame Contribute Delete
1 kB
from setuptools import setup, find_packages
setup(
name="jaco-institutional-sandbox-optimizer",
version="2.0.0",
author="Dick Jacobsson (Rick8444) & JACO Autonomous Agent Framework",
author_email="dickjacobsson022@gmail.com",
description="State-of-the-Art CFA-Compliant Macroeconomic Sandbox Engine for Autonomous Agents, DORA 2025 and EU AI Act Audits",
long_description=open("README.md", "r", encoding="utf-8").read() if open("README.md").readable() else "",
long_description_content_type="text/markdown",
url="https://huggingface.co/Rick8444/jaco-institutional-sandbox-optimizer",
py_modules=["jaco_sandbox_optimizer"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires=">=3.8",
)