-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
44 lines (41 loc) · 1.4 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", "setuptools-scm"]
[project]
name = "natural-keys"
dynamic = ["version"]
authors = [
{name = "S. Andrew Sheppard", email = "[email protected]"},
]
description = "Enhanced support for natural keys in Django and Django REST Framework."
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"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",
"Framework :: Django",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Topic :: Database",
]
dependencies = [
"html-json-forms>=1.0.0"
]
[project.urls]
Homepage = "https://github.com/wq/django-natural-keys"
Documentation = "https://wq.io/"
Source = "https://github.com/wq/django-natural-keys"
"Release Notes" = "https://github.com/wq/django-natural-keys/releases"
Issues = "https://github.com/wq/django-natural-keys/issues"
Tests = "https://github.com/wq/django-natural-keys/actions/workflows/test.yml"
[tool.setuptools_scm]