-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 882 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 882 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
[tool.poetry]
name = "synda"
version = "0.8.1"
description = "A CLI for generating synthetic data"
authors = ["Timothé Pearce <timothe.pearce@gmail.com>"]
license = "Apache 2.0"
readme = "README.md"
keywords = ["synthetic data", "pipeline", "llm"]
repository = "https://github.com/timothepearce/synda"
documentation = "https://github.com/timothepearce/synda"
packages = [{include = "synda"}]
[tool.poetry.dependencies]
python = "^3.10"
pyyaml = "^6.0.2"
pydantic = "^2.10.6"
pandas = "^2.2.3"
python-dotenv = "^1.0.1"
litellm = "1.55.12"
rich = "^13.9.4"
sqlmodel = "^0.0.22"
typer = {extras = ["all"], version = "^0.15.1"}
scikit-learn = "^1.6.1"
openpyxl = "^3.1.5"
pypdf2 = "^3.0.1"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
synda = "synda.cli.app:main"