File size: 640 Bytes
350500c
 
 
 
 
 
 
 
47fa380
350500c
 
 
 
 
ac23714
47fa380
 
 
 
 
 
 
 
 
 
 
 
ac23714
 
 
47fa380
 
 
 
 
 
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "meta-ad-policy-sandbox"
version = "0.2.3"
description = "Meta Ad-Policy RL Sandbox"
requires-python = ">=3.9"
dependencies = [
    "fastapi",
    "uvicorn",
    "pydantic",
    "requests",
    "openai",
    "openenv-core>=0.2.0",
]

[project.optional-dependencies]
train = [
    "torch",
    "datasets",
    "trl",
    "unsloth",
    "accelerate",
    "bitsandbytes",
    "peft",
]

[project.scripts]
server = "server.app:main"

[tool.setuptools.packages.find]
where = ["."]
include = ["server*", "src*"]
exclude = ["apps*", "tests*"]