-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1023 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 1023 Bytes
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
[tool.poetry]
name = "linguaml"
version = "0.1.0"
description = "An automated machine learning (AML) framework that combines the power of Reinforcement Learning (RL) architecture and Large Language Models (LLMs)."
authors = ["isaac-fei <isaac.omega.fei@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/Isaac-Fate/LinguAML"
repository = "https://github.com/Isaac-Fate/LinguAML"
[tool.poetry.scripts]
linguaml = 'linguaml:main'
[tool.poetry.dependencies]
# Python version
python = ">=3.11,<3.13"
# Other packages
numpy = "^1.26.1"
pandas = "^2.1.1"
scikit-learn = ">=1.3.1,<1.4"
torch = "^2.1.0"
typer = "^0.9.0"
openai = "^0.28.1"
pydantic = "^2.4.2"
pydantic-settings = "^2.0.3"
rich = "^13.6.0"
xpyutils = "^0.0.4"
ucimlrepo = "^0.0.3"
inflection = "^0.5.1"
xgboost = "^2.0.1"
lightgbm = "^4.1.0"
loguru = "^0.7.2"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.25.2"
guidance = "^0.0.64"
matplotlib = "^3.8.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"