-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
58 lines (55 loc) · 1.52 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
[tool.poetry]
name = "forecasting-tools"
version = "0.2.13"
description = "AI forecasting and research tools to help humans reason about and forecast the future"
authors = ["Benjamin Wilson <[email protected]>"]
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.10",
"Natural Language :: English",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = "^3.10"
openai = "^1.51.0"
tiktoken = "^0.8.0"
aiofiles = "^24.1.0"
aiohttp = "^3.9.3"
aiolimiter = "^1.1.0"
asyncio = "^3.4.3"
nest-asyncio = "^1.5.8"
requests = "^2.32.3"
pydantic = "^2.9.2"
python-dotenv = "^1.0.0"
regex = "^2024.11.6"
tenacity = "^9.0.0"
pillow = "^11.0.0"
transformers = "^4.44.1"
typeguard = "^4.3.0"
scikit-learn = ">=1.5.2,<1.7.0"
litellm = "^1.59.1"
numpy = ">=1.26.0,<3.0.0"
[tool.poetry.group.dev.dependencies]
pipreqs = "^0.4.13"
pre-commit = "^4.0.1"
seaborn = "^0.13.2"
matplotlib = "^3.9.2"
ipykernel = "^6.29.5"
notebook = "^7.2.2"
streamlit = "^1.36.0"
scipy = "^1.12.0"
plotly = "^5.24.1"
pytest = "^8.3.2"
pytest-xdist = "^3.3.1"
pytest-mock = "^3.14.0"
pytest-asyncio = "^0.25.0"
pypistats = "^1.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"