File size: 941 Bytes
d814291
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fe1f842
d814291
 
 
 
 
 
 
 
fe1f842
d814291
 
 
 
 
 
 
 
 
 
 
 
 
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
47
48
[project]
name = "osint-rl-env"
version = "0.1.0"
description = "OSINT-style multi-platform information ecosystem environment for LLM agents."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
	"openenv>=0.1.13",
	"openai>=1.40.0",
	"fastapi>=0.115.0",
	"requests>=2.32.3",
	"uvicorn>=0.30.0",
]

[project.optional-dependencies]
dev = [
	"pytest>=8.0.0",
]
train = [
	"datasets>=2.20.0",
	"transformers>=4.45.0",
	"accelerate>=0.33.0",
	"trl>=0.15.0",
	"peft>=0.11.0",
	"huggingface_hub>=0.34.0",
	"pillow",
	"torchvision",
	"wandb",
]

[project.scripts]
osint-env = "osint_env.cli:main"
server = "osint_env.server_entry:main"
osint-env-launch-hf-job = "osint_env.training.hf_jobs:main"

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
package-dir = {"" = "src"}

[tool.setuptools.packages.find]
where = ["src"]

[tool.pytest.ini_options]
testpaths = ["tests"]