mcaptcha-api-py/pyproject.toml

29 lines
735 B
TOML
Raw Normal View History

2023-12-31 21:08:57 +05:30
[project]
name = "mcaptcha_api"
2023-12-31 21:45:32 +05:30
version = "0.1.0"
2023-12-31 21:08:57 +05:30
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",
]
2023-12-31 21:25:01 +05:30
dependencies = [ "requests==2.31.0", "urllib3==2.1.0" ]
2023-12-31 21:08:57 +05:30
[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",
]