-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (41 loc) · 1.43 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mosparo_django"
version = "1.0.3"
description = "A Django app to integrate mosparo into your forms."
readme = "README.md"
authors = [{ name = "mosparo Core Developers", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"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",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
]
keywords = ["mosparo", "spam-protection", "accessibility", "captcha", "django", "app"]
dependencies = [
"mosparo_api_client>=1.1.0",
"Django>=3.2"
]
requires-python = ">=3.6"
[project.optional-dependencies]
dev = ["pytest-runner", "requests-mock", "pytest-django"]
[project.urls]
Website = "https://mosparo.io"
GitHub = "https://github.com/mosparo/django-integration"