-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.56 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
[project]
name = "django-model-values"
version = "1.6"
description = "Taking the O out of ORM."
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE.txt"}
authors = [{name = "Aric Coady", email = "[email protected]"}]
keywords = ["values_list", "pandas", "column-oriented", "data", "mapper", "pattern", "orm"]
classifiers = [
"Development Status :: 6 - Mature",
"Framework :: Django :: 4",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = ["django>=4.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.format]
quote-style = "preserve"
[[tool.mypy.overrides]]
module = ["django.*"]
ignore_missing_imports = true
[tool.coverage.run]
source = ["model_values"]
branch = true