-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.54 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
[project]
name = "webstack-django-sorting"
version = "3.0.2"
description = "Easy sorting of tables with Django"
authors = [
{ name = "Karim A. (aka Directeur)", email = "[email protected]" },
{ name = "Eric Florenzano", email = "[email protected]" },
{ name = "Stéphane Raimbault", email = "[email protected]" },
{ name = "S. Kossouho", email = "[email protected]" },
{ name = "Joffrey M.", email = "[email protected]" },
]
maintainers = [
{ name = "Stéphane Raimbault", email = "[email protected]" },
]
dependencies = ["Django>=3.0, <6.0"]
readme = "README.md"
requires-python = ">=3.6"
license = "BSD-3-Clause"
keywords = ["django", "sorting", "table"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Environment :: Web Environment",
"Framework :: Django",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Natural Language :: English",
]
[project.urls]
repository = "https://github.com/webstack/webstack-django-sorting.git"
changelog = "https://github.com/webstack/webstack-django-sorting/blob/master/CHANGELOG.md"
"Bug Tracker" = "https://github.com/webstack/webstack-django-sorting/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/webstack_django_sorting"]