pyproject.toml•1.14 kB
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "smooth-operator-agent-tools"
version = "1.0.106"
authors = [
{ name="Smooth Operator", email="florian.standhartinger@gmail.com" },
]
description = "Python client library for the Smooth Operator agent tools API."
# Using the standard SPDX format
license = "MIT"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"requests>=2.20.0",
]
[project.urls]
# Corrected Homepage URL
"Homepage" = "https://github.com/fstandhartinger/smooth-operator-client-python"
"Bug Tracker" = "https://github.com/fstandhartinger/smooth-operator-client-python/issues"
[tool.setuptools]
# Include package data specified in MANIFEST.in
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests*", "__pycache__", "*.py[cod]", "*$py.class", "*.egg-info", "dist", "build"]
namespaces = false