-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 2.1 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 2.1 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
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
[project]
name = "django-ltree-2"
version = "0.1.13"
description = "Continual of django-ltree with additional goodies"
authors = [
{ name = "baseplate-admin", email = "61817579+baseplate-admin@users.noreply.github.com" },
{ name = "Mario César Señoranis Ayala", email = "mariocesar@humanzilla.com" },
{ name = "Kimsia Sim" },
]
requires-python = ">=3.9"
readme = "README.md"
license = "MIT"
maintainers = [
{ name = "baseplate-admin", email = "61817579+baseplate-admin@users.noreply.github.com" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"Programming Language :: Python :: 3",
]
dependencies = ["django>=3.2", "psycopg>=3"]
[project.urls]
"Bug Tracker" = "https://github.com/baseplate-admin/django-ltree-2/issues"
homepage = "https://github.com/baseplate-admin/django-ltree-2"
repository = "https://github.com/baseplate-admin/django-ltree-2"
[dependency-groups]
test = ["pytest>=8.0.1,<9", "pytest-django>=4.8.0,<5"]
docs = [
"sphinx>=7.2.6,<8",
"myst-parser>=2",
"sphinx-reload>=0.2.0,<0.3",
"shibuya>=2024.6.1,<2026.0.0",
]
build = ["hatch"]
[tool.uv]
default-groups = ["test", "docs", "build"]
[tool.hatch.build.targets.sdist]
include = ["src/django_ltree"]
[tool.hatch.build.targets.wheel]
include = ["src/django_ltree"]
[tool.hatch.build.targets.wheel.sources]
"src/django_ltree" = "django_ltree"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"