-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (43 loc) · 1.44 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
[project]
name = "django-model-values"
version = "1.7"
description = "Taking the O out of ORM."
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
authors = [{name = "A. Coady"}]
keywords = ["values_list", "dataframe", "column-oriented", "data-mapper", "orm"]
classifiers = [
"Development Status :: 6 - Mature",
"Framework :: Django :: 5",
"Framework :: Django :: 6",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = ["django>=5.2"]
[project.urls]
Homepage = "https://github.com/coady/django-model-values"
Documentation = "https://coady.github.io/django-model-values"
Changelog = "https://github.com/coady/django-model-values/blob/main/CHANGELOG.md"
Issues = "https://github.com/coady/django-model-values/issues"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
extend-select = ["I"]
[tool.ty.rules]
invalid-method-override = "ignore"
possibly-missing-submodule = "ignore"
[tool.coverage.run]
source = ["model_values"]
branch = true
[dependency-groups]
dev = ["pytest-cov", "pytest-django", "ty"]
docs = ["great-docs"]