generated from aboutcode-org/skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
83 lines (75 loc) · 2.09 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "django-altcha"
version = "0.1.3"
description = "Django field and widget for Altcha CAPTCHA."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.9"
dependencies = [
"Django>=4.2",
"altcha>=0.1.9",
]
keywords = ["captcha", "django", "widget", "form", "altcha"]
[project.optional-dependencies]
dev = [
"build",
"ruff",
"pytest-django",
]
docs = [
"Sphinx>=5.0.2",
"sphinx-rtd-theme>=1.0.0",
"sphinx-reredirects >= 0.1.2",
"doc8>=0.11.2",
"sphinx-autobuild",
"sphinx-rtd-dark-mode>=1.3.0",
"sphinx-copybutton",
]
[project.urls]
Homepage = "https://github.com/aboutcode-org/django-altcha"
Documentation = "https://django-altcha.readthedocs.io/"
Repository = "https://github.com/aboutcode-org/django-altcha.git"
Issues = "https://github.com/aboutcode-org/django-altcha/issues"
Changelog = "https://github.com/aboutcode-org/django-altcha/blob/main/CHANGELOG.rst"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["django_altcha"]
[tool.setuptools.package-data]
django_altcha = ["static/**", "templates/**"]
[tool.ruff]
exclude = [
"docs",
]
[tool.ruff.lint]
# Rules: https://docs.astral.sh/ruff/rules/
select = [
"E", # pycodestyle
"W", # pycodestyle warnings
"F", # Pyflakes
"UP", # pyupgrade
"S", # flake8-bandit
"I", # isort
"C9", # McCabe complexity
]