[build-system] requires = ["setuptools>=65.0", "wheel"] build-backend = "setuptools.build_meta" [project] name = "fraudshield" version = "0.6.0" description = "Partial-observability OpenEnv environment for simulated fraud investigation and workflow-aware routing." readme = "README.md" requires-python = ">=3.10" license = { text = "MIT" } authors = [ { name = "Devika J", email = "devikaj2005@gmail.com" }, ] keywords = [ "openenv", "reinforcement-learning", "fraud-investigation", "world-modeling", "agent-evaluation", "trust-and-safety", "environment", ] classifiers = [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering :: Artificial Intelligence", ] dependencies = [ "fastapi>=0.115.0", "matplotlib>=3.8.0", "numpy>=1.24.0", "openai>=1.40.0", "openenv-core>=0.2.0", "pandas>=2.0.0", "pydantic>=2.0.0", "scikit-learn>=1.3.0", "uvicorn>=0.30.0", ] [project.optional-dependencies] data = [ "kaggle>=1.6.0", ] dev = [ "black>=24.0.0", "ipython>=8.0.0", "pytest>=7.4.0", "ruff>=0.4.0", ] rl = [ "accelerate>=0.33.0", "bitsandbytes>=0.43.0", "datasets>=2.20.0", "peft>=0.12.0", "tensorboard>=2.17.0", "transformers>=4.51.0", "trl>=0.19.0", "wandb>=0.17.0", ] [project.urls] Homepage = "https://github.com/DevikaJ2005/fraudshield" Repository = "https://github.com/DevikaJ2005/fraudshield.git" Documentation = "https://github.com/DevikaJ2005/fraudshield/blob/main/README.md" BugTracker = "https://github.com/DevikaJ2005/fraudshield/issues" [project.scripts] server = "server.app:main" fraudshield-train = "train:main" fraudshield-evaluate = "evaluate:main" [tool.setuptools] py-modules = [ "data_loader", "download_kaggle_data", "environment", "evaluate", "fraudshield_env", "graders", "inference", "inference_llm", "llm_agent", "llm_agent_openai", "models", "reward", "train", "utils", "config", ] [tool.setuptools.packages.find] include = ["server"] [tool.black] line-length = 100 target-version = ["py310", "py311"] [tool.ruff] line-length = 100 [tool.ruff.lint] select = ["E", "F", "W"] ignore = ["E501"]