-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 870 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 870 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
42
43
44
[build-system]
requires = ["setuptools>=80.9.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gui4de"
version = "1.0.0"
description = "LLM Data Engineering Tasks"
readme = "README_PACKAGE.md"
requires-python = ">=3.13"
license = "MIT"
dependencies = [
"pandas>=2.1.0",
"numpy>=1.24.0",
"openai>=1.3.0",
"pyyaml>=6.0",
"rich>=13.0.0",
"omegaconf>=2.3.0",
"tiktoken>=0.8.0",
"tqdm>=4.60.0",
]
[tool.setuptools]
packages = [
"gui4de",
"gui4de.tasks",
"gui4de.tasks.task_utils",
"gui4de.tasks.core",
"gui4de.tasks.config"
]
[tool.setuptools.package-data]
gui4de = [
"gui4de.yaml",
"tasks/config/tasks_configuration/*.yaml",
"tasks/config/*.yaml",
"py.typed"
]
[tool.setuptools.exclude-package-data]
"*" = ["__pycache__", "__pycache__/*"]
[tool.pyright]
exclude = ["gui4de/tasks/core/**"]