File size: 413 Bytes
9cb3002 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | from setuptools import setup, find_packages
setup(
name="mate-env",
version="0.1.0",
packages=find_packages(),
install_requires=[
"gymnasium",
"numpy",
"pandas",
"matplotlib",
"yfinance",
"fastapi",
"uvicorn",
"openai",
],
author="Arka Sarkar",
description="Multi-Agent Trading Environment for the OpenEnv Hackathon",
)
|