Spaces:
Sleeping
Sleeping
File size: 793 Bytes
d064478 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | [build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "shadowops"
version = "3.2.0"
description = "ShadowOps FastAPI WebSocket Server and RL Environment"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name="ShadowOps Team" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"fastapi",
"uvicorn",
"websockets",
"pydantic",
"rich",
"packaging>=23.0",
"unsloth",
"vllm",
"trl",
"transformers",
"peft",
"accelerate",
"bitsandbytes",
"datasets"
]
[project.optional-dependencies]
test = [
"pytest",
"httpx"
]
lite = [
"numpy"
]
[tool.setuptools.packages.find]
include = ["backend-ml*"]
|