forked from hearsaycorp/django-livefield
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 1.06 KB
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
[tool.poetry]
name = "django-livefield"
version = "4.3.0"
description = "Convenient soft-deletion support for Django models"
authors = ["Hearsay Social <opensource@hearsaysocial.com>"]
license = "MIT"
readme = ["README.md", "CHANGELOG.md"]
keywords = ["python", "django", "soft-delete"]
packages = [
{ include = "livefield", from = "src" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
]
[tool.poetry.urls]
"Github Repo" = "https://github.com/hearsaycorp/django-livefield"
[tool.poetry.dependencies]
python = ">=3.11,<4.0"
Django = ">=4.2,<5.3"
[tool.poetry.group.dev.dependencies]
flake8 = "*"
pylint = "*"
pytest = "*"
pytest-django = "*"
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"