-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
57 lines (50 loc) · 1.63 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
49
50
51
52
53
54
55
56
57
[tool.poetry]
name = "django-ltree-2"
version = "0.1.10"
description = "Continual of django-ltree"
authors = [
"baseplate-admin <[email protected]>",
"Mario César Señoranis Ayala <[email protected]>",
"Kimsia Sim",
]
maintainers = [
"baseplate-admin <[email protected]>",
]
license = "MIT"
readme = "README.md"
packages = [{ include = "django_ltree", from = "src" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"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",
]
[tool.poetry.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"
[tool.poetry.dependencies]
python = ">=3.9"
django = ">=3.2"
psycopg = ">=3"
[tool.poetry.group.test.dependencies]
pytest = "^8.0.1"
pytest-django = "^4.8.0"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
myst-parser = ">=2"
sphinx-reload = "^0.2.0"
shibuya = "^2024.6.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"