|
| 1 | +[tool.poetry] |
| 2 | +name = "launchdarkly-server-sdk-ai-langchain" |
| 3 | +version = "0.1.0" |
| 4 | +description = "LangChain provider for LaunchDarkly AI SDK" |
| 5 | +authors = ["LaunchDarkly <dev@launchdarkly.com>"] |
| 6 | +license = "Apache-2.0" |
| 7 | +readme = "README.md" |
| 8 | +homepage = "https://docs.launchdarkly.com/sdk/ai/python" |
| 9 | +repository = "https://github.com/launchdarkly/python-server-sdk-ai" |
| 10 | +documentation = "https://launchdarkly-python-sdk-ai.readthedocs.io/en/latest/" |
| 11 | +classifiers = [ |
| 12 | + "Intended Audience :: Developers", |
| 13 | + "License :: OSI Approved :: Apache Software License", |
| 14 | + "Operating System :: OS Independent", |
| 15 | + "Programming Language :: Python :: 3", |
| 16 | + "Programming Language :: Python :: 3.9", |
| 17 | + "Programming Language :: Python :: 3.10", |
| 18 | + "Programming Language :: Python :: 3.11", |
| 19 | + "Programming Language :: Python :: 3.12", |
| 20 | + "Programming Language :: Python :: 3.13", |
| 21 | + "Topic :: Software Development", |
| 22 | + "Topic :: Software Development :: Libraries", |
| 23 | +] |
| 24 | +packages = [ { include = "ldai" } ] |
| 25 | + |
| 26 | +[tool.poetry.dependencies] |
| 27 | +python = ">=3.9,<4" |
| 28 | +launchdarkly-server-sdk-ai = { path = "../core", develop = true } |
| 29 | +langchain = ">=0.3.0,<2.0" |
| 30 | +langchain-core = ">=0.3.0,<2.0" |
| 31 | + |
| 32 | +[tool.poetry.group.dev.dependencies] |
| 33 | +pytest = ">=2.8" |
| 34 | +pytest-cov = ">=2.4.0" |
| 35 | +pytest-asyncio = ">=0.21.0" |
| 36 | + |
| 37 | +[build-system] |
| 38 | +requires = ["poetry-core"] |
| 39 | +build-backend = "poetry.core.masonry.api" |
| 40 | + |
0 commit comments