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