-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.07 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "lightningrod-ai"
version = "0.1.27"
description = "Python SDK for dataset generation on LightningRod platform ⚡"
readme = "README.md"
requires-python = ">=3.10"
keywords = [
"synthetic dataset generation",
"synthetic data",
"LLM training data",
"fine-tuning datasets",
]
license = { file = "LICENSE" }
authors = [
{name = "Lightning Rod Labs", email = "support@lightningrod.ai"}
]
dependencies = [
"requests>=2.31.0",
"pydantic>=2.0.0",
"httpx>=0.25.0",
"attrs>=23.1.0",
"python-dateutil>=2.8.0",
"pyarrow>=14.0.0",
"fsspec>=2023.0.0",
"rich>=13.0.0",
]
[project.optional-dependencies]
dev = [
"build>=1.0.0",
"openapi-python-client>=0.15.0",
"pytest>=7.0.0",
"twine>=5.0.0",
]
transfer = [
"google-cloud-storage>=2.0.0",
]
[tool.setuptools]
package-dir = {"" = "src"}
[project.urls]
Homepage = "https://lightningrod.ai/sdk"
Repository = "https://github.com/lightning-rod-labs/lightningrod-python-sdk"