-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
pyproject.toml
32 lines (29 loc) · 861 Bytes
/
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
[tool.poetry]
name = "django-honeypot"
packages = [{ include = "honeypot" }]
version = "1.2.1"
description = "Django honeypot field utilities"
authors = ["James Turk <[email protected]>"]
license = "BSD-2-Clause"
readme = "README.rst"
repository = "https://github.com/jamesturk/django-honeypot/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Environment :: Web Environment",
]
[tool.poetry.dependencies]
Django = ">=3.2,<5.2"
python = "^3.8"
[tool.poetry.dev-dependencies]
black = "^24.1.1"
ruff = "^0.6.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"