mcaptcha-api-py/pyproject.toml
Renovate Bot 6124713288
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
ci/woodpecker/pull_request_closed/woodpecker Pipeline was successful
chore(deps): update dependency requests to v2.32.3
2024-06-07 10:06:09 +00:00

28 lines
735 B
TOML

[project]
name = "mcaptcha_api"
version = "0.1.0"
authors = [
{ name="Aravinth Manivannan", email="realaravinth@batsense.net" }
]
description = "A library to interact with mCaptcha API"
readme = "README.md"
#requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [ "requests==2.32.3", "urllib3==2.2.1" ]
[project.urls]
Homepage = "https://git.batsense.net/mCaptcha/mcaptcha-api-py"
Issues = "https://git.batsense.net/mCaptcha/mcaptcha-api-py/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]