[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "ocickle-auth-python"
version = "0.1.0"
description = "Python SDK for Ocickle Auth API"
readme = "README.md"
requires-python = ">=3.8"
authors = [{name = "Donald D Banda", email = "donalddbanda@gmail.com"}]
license = {text = "MIT"}
keywords = ["ocickle", "auth", "sdk", "api-client"]
classifiers = [
    "Development Status :: 3 - Alpha",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: MIT License",
    "Programming Language :: Python :: 3",
    "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",
]
dependencies = ["requests>=2.25"]

[project.urls]
Homepage = "https://github.com/donalddbanda/ocickle-auth-python"
Repository = "https://github.com/donalddbanda/ocickle-auth-python"
Issues = "https://github.com/donalddbanda/ocickle-auth-python/issues"

[tool.setuptools.packages.find]
where = ["."]
include = ["ocickle_auth_python*"]
