-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
115 lines (102 loc) · 2.62 KB
/
pyproject.toml
File metadata and controls
115 lines (102 loc) · 2.62 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[build-system]
requires = ["setuptools>=75.2"]
build-backend = "setuptools.build_meta"
[project]
name = "django-postgresql-dag"
version = "2026.2.3"
description = "Directed Acyclic Graph implementation for Django & Postgresql"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
authors = [
{ name = "Jack Linke", email = "jack@watervize.com" },
]
keywords = ["django", "graph", "tree", "dag", "network", "directed", "acyclic", "postgres", "cte"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
"Topic :: Database",
"Topic :: Utilities",
]
dependencies = [
"django>=4.2",
"psycopg[binary]>=3.1",
]
[project.optional-dependencies]
transforms = [
"networkx>=2.5",
"pandas>=1.2",
"rustworkx>=0.13",
]
[project.urls]
Homepage = "https://github.com/OmenApps/django-postgresql-dag"
Repository = "https://github.com/OmenApps/django-postgresql-dag"
Documentation = "https://django-postgresql-dag.readthedocs.io/en/latest/"
Issues = "https://github.com/OmenApps/django-postgresql-dag/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
src = ["src"]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["E", "W", "F", "I"]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["django_postgresql_dag"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
django_find_project = false
pythonpath = ["."]
python_files = ["test_*.py"]
log_cli = true
[tool.coverage.run]
branch = true
source_pkgs = ["django_postgresql_dag"]
[tool.coverage.report]
show_missing = true
omit = [
".nox/*",
"*/migrations/*",
"*/__init__.py",
]
[tool.coverage.paths]
source = [
"src",
"*/site-packages",
]
[tool.pyright]
pythonVersion = "3.11"
typeCheckingMode = "basic"
include = ["src"]
[dependency-groups]
dev = [
"bandit",
"coverage[toml]",
"django-extensions",
"nox",
"pillow>=12.1.1",
"pip-audit",
"pre-commit",
"pre-commit-hooks",
"pytest",
"pytest-cov",
"pytest-django",
"pytest-timeout",
"pyupgrade",
"ruff",
"werkzeug",
]