-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
56 lines (51 loc) · 1.47 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
[build-system]
requires = [
"setuptools>=60",
"setuptools-scm>=8.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "botex"
version = "0.1.0"
authors = [
{ name="Joachim Gassen", email="[email protected]" },
{ name="Fikir Worku Edossa", email="[email protected]" },
]
maintainers = [
{ name="Fikir Worku Edossa", email="[email protected]" },
{ name="Joachim Gassen", email="[email protected]" },
]
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 :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
dependencies = [
'requests',
'psutil',
'selenium',
'litellm>=1.44.28',
'pydantic-settings'
]
[project.urls]
Homepage = "https://github.com/joachim-gassen/botex"
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 = true
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"
]