-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.25 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fedotllm"
version = "0.1.0"
description = "Description of the project"
authors = [{ name = "Alexey Lapin", email = "a.lapin@itmo.ru" }]
readme = "README.md"
requires-python = ">=3.10,<3.11"
dependencies = [
"typer>=0.3.0,<0.16.0",
"hydra-core>=1.3.2,<2.0.0",
"rich>=13.9.4,<14.0.0",
"autogluon-tabular[all]>=1.2,<2.0",
"openai>=1.65.3,<2.0.0",
"tenacity>=9.0.0,<10.0.0",
"autogluon>=1.2,<2.0",
"giotto-tda>=0.6.0,<0.7.0",
"ripser>=0.6.4,<0.7.0",
"protobuf>=5.29.0,<6.0.0",
"opencv-python>=4.11.0,<5.0.0",
"pillow>=11.1.0,<12.0.0",
"tensorflow>=2.18.0,<3.0.0",
"langfuse==2.59.7",
"python-dotenv>=1.1.0",
"nbformat>=4.2.0",
"dask-expr>=1.0.0,<2.0.0",
"json-repair>=0.46.2",
"tf-keras>=2.19.0",
"jupyter>=1.1.1",
"fedot",
]
[project.optional-dependencies]
dev = ["ruff>=0.9.9"]
[project.scripts]
fedotllm = "fedotllm:main"
[tool.uv.sources]
#fedot-ind = { git = "https://github.com/aimclub/Fedot.Industrial.git" }
caafe = { git = "https://github.com/AaLexUser/CAAFE.git" }
fedot = { git = "https://github.com/aimclub/FEDOT.git" }
[dependency-groups]
dev = [
"ruff>=0.11.13",
]
caafe = [
"caafe",
]