-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (73 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (73 loc) · 1.88 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "django_ltree"
version = "0.6.0"
description = "Django app to support ltree postgres extension"
readme = { file = "README.md", content-type = "text/markdown" }
license-files = ["LICENSE"]
authors = [
{ name = "Mario César Señoranis Ayala", email = "mariocesar@humanzilla.com" }
]
requires-python = ">=3.11"
dependencies = [
"django>=5.2"
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Django",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.urls]
Source = "https://github.com/mariocesar/django_ltree"
Tracker = "https://github.com/mariocesar/django_ltree/issues"
[dependency-groups]
test = [
"django-coverage-plugin",
"pytest",
"pytest-django",
"pytest-cov",
"psycopg[binary]",
]
dev = [
"ruff",
"prek",
"django-cmd>=2.7",
"django-harlequin>=1.7.0",
]
ipython = [
"ipython>=8.37.0",
]
[tool.django]
settings_module = "tests.conf.settings"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.conf.settings"
django_find_project = false
pythonpath = ["." ,"django_ltree"]
[tool.coverage.run]
plugins = ["django_coverage_plugin"]
branch = true
parallel = true
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = [
"E", # Errors
"F", # Pyflakes
"W", # Warnings about wrong format
"S", # Security
"T20", # Look for print() statements
]
[tool.ruff.lint.per-file-ignores]
"**/{tests}/*" = ["S101", "F841"]