-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (66 loc) · 1.98 KB
/
pyproject.toml
File metadata and controls
69 lines (66 loc) · 1.98 KB
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
[tool.poetry]
name = "forecasting-tools"
version = "0.2.89"
description = "AI forecasting and research tools to help humans reason about and forecast the future"
authors = ["Benjamin Wilson <ben@metaculus.com>"]
license = "MIT"
readme = "README.md"
keywords = ["ai", "forecasting", "research", "metaculus", "prediction", "future", "market"]
repository = "https://github.com/Metaculus/forecasting-tools"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.11",
"Natural Language :: English",
"Operating System :: OS Independent"
]
packages = [{include = "forecasting_tools"}]
include = [
"forecasting_tools/**/*.json",
"forecasting_tools/**/*.jsonl",
]
[tool.poetry.dependencies]
python = "^3.11"
openai = ">=1.51.0,<3.0.0"
tiktoken = ">=0.8.0,<0.13.0"
aiofiles = ">=24.1.0,<26.0.0"
aiohttp = "^3.9.3"
aiolimiter = "^1.1.0"
asyncio = ">=3.0.0,<5.0.0"
nest-asyncio = "^1.5.8"
requests = "^2.32.3"
pydantic = "^2.9.2"
python-dotenv = "^1.0.0"
regex = ">=2024.11.6,<2027.0.0"
tenacity = ">=8.0.0,<10.0.0"
pillow = ">=9.0.0,<13.0.0"
typeguard = "^4.3.0"
scikit-learn = "^1.5.2"
litellm = ">=1.59.1,<2.0.0,!=1.76.*,!=1.77.*,!=1.82.7,!=1.82.8"
numpy = ">=1.26.0,<3.0.0"
exceptiongroup = "^1.2.2"
faker = ">=37.0.0,<41.0.0"
plotly = ">=5.24.1,<7.0.0"
pandas = ">=2.2.3,<4.0.0"
streamlit = "^1.20.0"
asknews = ">=0.9.1,<0.14.0"
unidecode = "^1.4.0"
hyperbrowser = ">=0.53.0,<1.0.0"
pendulum = "^3.1.0"
openai-agents = {extras = ["litellm"], version = ">=0.2.0,<0.14.0"}
[tool.poetry.group.dev.dependencies]
time-machine = ">=2.19.0,<4.0.0"
pre-commit = "^4.0.1"
matplotlib = "^3.9.2"
ipykernel = ">=6.29.5,<8.0.0"
notebook = "^7.2.2"
pytest = ">=8.3.2,<10.0.0"
pytest-xdist = "^3.3.1"
pytest-mock = "^3.14.0"
pytest-asyncio = ">=0.25.0,<2.0.0"
pypistats = "^1.7.0"
tox = "^4.26.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"