RevOpsGYm / setup.py
Sriram611
Fix all dependencies and paths
16111ee
raw
history blame contribute delete
312 Bytes
from setuptools import setup, find_packages
setup(
name="revops_gym",
version="0.1.0",
packages=find_packages(),
install_requires=[
"gymnasium",
"numpy",
"pandas",
"fastapi",
"uvicorn",
"pydantic",
"matplotlib",
"requests"
],
)