Spaces:
Sleeping
Sleeping
| from setuptools import setup, find_packages | |
| setup( | |
| name="fineprint", | |
| version="0.1.0", | |
| description="OpenEnv-compatible RL environment for policy drift detection", | |
| author="FinePrint Team", | |
| packages=find_packages(), | |
| python_requires=">=3.9", | |
| install_requires=[ | |
| "gymnasium>=0.29.0", | |
| "numpy>=1.24.0", | |
| ], | |
| extras_require={ | |
| "dev": ["pytest>=7.0.0"], | |
| "train": [ | |
| "unsloth", | |
| "torch", | |
| "wandb", | |
| ], | |
| }, | |
| entry_points={ | |
| "gymnasium.envs": [ | |
| "FinePrint-v0 = fineprint.env:FinePrintEnv", | |
| ], | |
| }, | |
| ) | |