You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from setuptools import setup, find_packages # noqa: H301
NAME = "SCRBenchmark"
VERSION = "0.6.3"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = [
"numpy==2.2.2",
"sympy==1.13.3",
"pandas==2.2.3",
"jax==0.5.0",
]
setup(
name=NAME,
version=VERSION,
description="Can be used to generate benchmark instance data for instances with known constraints. And can check if provided models adhere to the known constraints.",