|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "mosparo_api_client" |
| 7 | +version = "1.0.0" |
| 8 | +description = "Python API Client to communicate with mosparo." |
| 9 | +readme = "README.md" |
| 10 | +authors = [{ name = "mosparo Core Developers", email = "info@mosparo.io" }] |
| 11 | +license = { file = "LICENSE" } |
| 12 | +classifiers = [ |
| 13 | + "Intended Audience :: Developers", |
| 14 | + "License :: OSI Approved :: MIT License", |
| 15 | + "Operating System :: OS Independent", |
| 16 | + "Programming Language :: Python :: 3.5", |
| 17 | + "Programming Language :: Python :: 3.6", |
| 18 | + "Programming Language :: Python :: 3.7", |
| 19 | + "Programming Language :: Python :: 3.8", |
| 20 | + "Programming Language :: Python :: 3.9", |
| 21 | + "Programming Language :: Python :: 3.10", |
| 22 | + "Programming Language :: Python :: 3.11", |
| 23 | + "Programming Language :: Python :: 3.12", |
| 24 | + "Topic :: Internet", |
| 25 | +] |
| 26 | +keywords = ["mosparo", "api-client", "spam-protection", "accessibility", "captcha"] |
| 27 | +dependencies = [ |
| 28 | + "requests" |
| 29 | +] |
| 30 | +requires-python = ">=3.5" |
| 31 | + |
| 32 | +[project.optional-dependencies] |
| 33 | +dev = ["pytest-runner", "requests-mock", "pip-tools"] |
| 34 | + |
| 35 | +[project.urls] |
| 36 | +Website = "https://mosparo.io" |
| 37 | +GitHub = "https://github.com/mosparo/python-api-client" |
0 commit comments