-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
74 lines (67 loc) · 1.77 KB
/
pyproject.toml
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = [
"setuptools>=60",
"setuptools-scm>=8.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "botex"
version = "0.2.0"
authors = [
{ name="Joachim Gassen", email="gassen@wiwi.hu-berlin.de" },
{ name="Fikir Worku Edossa", email="edossafi@wiwi.hu-berlin.de" },
]
maintainers = [
{ name="Fikir Worku Edossa", email="edossafi@wiwi.hu-berlin.de" },
{ name="Joachim Gassen", email="gassen@wiwi.hu-berlin.de" },
]
description = "Using LLMs as Experimental Participants in oTree"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
dependencies = [
'click',
'requests',
'psutil',
'selenium',
'litellm>=1.44.28',
'pydantic',
'pydantic-settings',
'instructor',
'python-dotenv'
]
[project.urls]
Homepage = "https://botex.trr266.de"
Issues = "https://github.com/joachim-gassen/botex/issues"
[project.scripts]
botex = "botex.cli:run_botex"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ['tests']
filterwarnings = ["ignore:::litellm:", "ignore:::pydantic:"]
log_cli = false
log_cli_level = 'INFO'
log_cli_format = '%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)'
markers = [
"unit: mark a test as a unit test"
]
[dependency-groups]
dev = [
"mkdocs-material>=9.5.49",
"mkdocstrings[python]>=0.27.0",
"pytest",
"pytest-dependency",
"otree>=5.11.1",
"mkdocs-click>=0.5.0",
"mike"
]
[tool.uv]
override-dependencies = ["markupsafe==1.1.1"]