28 lines
735 B
TOML
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.2" ]
|
|
|
|
[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",
|
|
]
|