eb646a8
16111ee
eb646a8
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 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"
],
) |