73 lines
2.0 KiB
TOML
73 lines
2.0 KiB
TOML
[project]
|
|
name = "honcho-ai"
|
|
version = "2.4.0"
|
|
description = "Official DX Optimized Python SDK for Honcho"
|
|
dynamic = ["readme"]
|
|
license = "Apache-2.0"
|
|
authors = [
|
|
{ name = "Plastic Labs", email = "hello@plasticlabs.ai" },
|
|
]
|
|
dependencies = [
|
|
"httpx>=0.28.0, <1",
|
|
"pydantic>=2.0.0, <3",
|
|
"typing-extensions>=4.12.0; python_version < \"3.12\"",
|
|
]
|
|
requires-python = ">= 3.8"
|
|
classifiers = [
|
|
"Typing :: Typed",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Operating System :: OS Independent",
|
|
"Operating System :: POSIX",
|
|
"Operating System :: MacOS",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Operating System :: Microsoft :: Windows",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
cli = ["honcho-cli>=0.1.0"]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/plastic-labs/honcho"
|
|
Repository = "https://github.com/plastic-labs/honcho"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff>=0.11.13",
|
|
]
|
|
|
|
[tool.ruff.lint]
|
|
ignore = ["E501", "B008", "COM812"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
readme = {file = ["README.md"], content-type = "text/markdown"}
|
|
|
|
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.basedpyright]
|
|
# BasedPyright currently seems like the best type checker option, much faster
|
|
# https://docs.basedpyright.com/latest/configuration/config-files/#sample-pyprojecttoml-file
|
|
include = ["src"]
|
|
reportUnusedCallResult = false
|
|
reportCallInDefaultInitializer = false
|
|
reportAny = false
|
|
reportExplicitAny = false
|
|
reportImportCycles = false
|
|
|
|
[[tool.uv.index]]
|
|
name = "testpypi"
|
|
url = "https://test.pypi.org/simple/"
|
|
publish-url = "https://test.pypi.org/legacy/"
|
|
explicit = true
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
include = ["honcho", "honcho.async_client", "honcho.http", "honcho.utils"]
|