File size: 1,129 Bytes
5d108aa
 
 
 
 
 
 
 
b92d01f
5d108aa
 
5632e75
51d4cae
5d108aa
 
 
 
5632e75
5d108aa
 
b92d01f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5d108aa
 
 
51d4cae
5d108aa
 
 
 
a3dd1cb
 
 
 
 
 
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
49
50
51
52
53
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "openenv-search_env"
version = "0.1.0"
description = "Search Env environment for OpenEnv"
requires-python = ">=3.11"
dependencies = [
    "openenv-core[core]>=0.2.2",
    "openai>=2.31.0",
    "python-dotenv>=1.0.0",
]

[project.optional-dependencies]
dev = [
    "pytest>=9.0.3",
    "pytest-cov>=4.0.0",
]
datagen = [
    "anthropic>=0.75.0",
    "chromadb>=1.4.0",
    "tiktoken>=0.12.0",
    "rich>=14.3.4",
    "requests>=2.32.5",
]
datagen-web = [
    "openenv-search_env[datagen]",
]
datagen-sec = [
    "openenv-search_env[datagen]",
]
datagen-patents = [
    "openenv-search_env[datagen]",
    "python-docx>=1.2.0",
    "pandas>=2.0.0",
    "httpx[http2]>=0.28.1",
]

[project.scripts]
server = "search_env.server.app:main"
inference = "search_env.inference:cli"

[tool.setuptools]
include-package-data = true
packages = ["search_env", "search_env.server"]
package-dir = { "search_env" = ".", "search_env.server" = "server" }

[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
addopts = "-v"