-
Notifications
You must be signed in to change notification settings - Fork 9.9k
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 2.14 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (50 loc) · 2.14 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
54
55
56
57
[project]
name = "lfx-bundles"
version = "1.0.0"
description = "Langflow's long-tail provider bundles as a single manifest-less metapackage (the langchain-community model)."
readme = "README.md"
requires-python = ">=3.10,<3.15"
license = { text = "MIT" }
authors = [
{ name = "Langflow", email = "contact@langflow.org" },
]
keywords = ["langflow", "lfx", "extension", "bundle", "providers"]
# Runtime: only lfx (the BUNDLE_API surface). Each provider's third-party SDK
# is an optional extra (see [project.optional-dependencies]); installing
# lfx-bundles bare gives the provider *code* but defers each provider's SDK to
# its extra, so a user opts into exactly the providers they need. The
# generated ``all`` extra pulls every provider's deps and is what ``langflow``
# depends on (``lfx-bundles[all]``) so ``pip install langflow`` stays
# functionally identical to today.
dependencies = [
"lfx>=1.11.0.dev0,<2.0.0",
]
[project.optional-dependencies]
# Per-provider extras + the ``all`` aggregate are populated by the bulk move
# (scripts/migrate/consolidate_bundles.py) as the long-tail providers land
# here. Extra keys are PEP 685-normalized (lowercase, hyphen-separated).
# ``all`` is GENERATED from the per-provider keys -- never hand-edit it.
# Empty until the first provider tranche moves in.
all = []
[project.urls]
Homepage = "https://github.com/langflow-ai/langflow"
Documentation = "https://docs.langflow.org/extensions"
Repository = "https://github.com/langflow-ai/langflow"
# Manifest-less discovery via the ``lfx.bundles`` entry-point group (NOT
# ``langflow.extensions``). The loader (lfx.extension.loader._bundles_root)
# resolves this package with find_spec and folder-walks its immediate
# subdirectories -- each is one bundle at the @official slot, named after the
# directory. No extension.json; exempt from ``lfx extension validate``.
[project.entry-points."lfx.bundles"]
lfx_bundles = "lfx_bundles"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/lfx_bundles"]
[tool.hatch.build.targets.sdist]
include = [
"src/lfx_bundles",
"README.md",
"pyproject.toml",
]