|
| 1 | +[tool.poetry] |
| 2 | +name = "launchdarkly-server-sdk-ai" |
| 3 | +version = "0.10.1" |
| 4 | +description = "LaunchDarkly SDK for AI" |
| 5 | +authors = [ "LaunchDarkly <[email protected]>"] |
| 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", from = "src" } ] |
| 25 | + |
| 26 | +[tool.poetry.dependencies] |
| 27 | +python = ">=3.9,<4" |
| 28 | +launchdarkly-server-sdk = ">=9.4.0" |
| 29 | +chevron = "=0.14.0" |
| 30 | + |
| 31 | + |
| 32 | +[tool.poetry.group.dev.dependencies] |
| 33 | +pytest = ">=2.8" |
| 34 | +pytest-cov = ">=2.4.0" |
| 35 | +pytest-mypy = "==1.0.1" |
| 36 | +pytest-asyncio = ">=0.21.0" |
| 37 | +mypy = "==1.18.2" |
| 38 | +pycodestyle = "^2.12.1" |
| 39 | +isort = ">=5.13.2,<7.0.0" |
| 40 | + |
| 41 | + |
| 42 | +[tool.poetry.group.docs] |
| 43 | +optional = true |
| 44 | + |
| 45 | +[tool.poetry.group.docs.dependencies] |
| 46 | +sphinx = ">=6,<8" |
| 47 | +sphinx-rtd-theme = ">=1.3,<4.0" |
| 48 | +certifi = ">=2018.4.16" |
| 49 | +expiringdict = ">=1.1.4" |
| 50 | +pyrfc3339 = ">=1.0" |
| 51 | +jsonpickle = ">1.4.1" |
| 52 | +semver = ">=2.7.9" |
| 53 | +urllib3 = ">=1.26.0" |
| 54 | +jinja2 = "3.1.6" |
| 55 | + |
| 56 | +[tool.mypy] |
| 57 | +python_version = "3.9" |
| 58 | +ignore_missing_imports = true |
| 59 | +install_types = true |
| 60 | +non_interactive = true |
| 61 | + |
| 62 | + |
| 63 | +[tool.pytest.ini_options] |
| 64 | +addopts = ["-ra"] |
| 65 | + |
| 66 | + |
| 67 | +[build-system] |
| 68 | +requires = ["poetry-core"] |
| 69 | +build-backend = "poetry.core.masonry.api" |
0 commit comments