-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.22 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools"]
[project]
name = "django-ormql"
license = "Apache-2.0"
description = "ORMQL is a library that allows adding a reporting DSL (that is loosely based on SQL) to your Django project."
readme = "README.md"
authors = [{ name = "Raphael Michel", email = "mail@raphaelmichel.de" }]
keywords = [
"django",
"sql",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.10"
dependencies = [
"sqlglot[c]==30.0.3",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/pretix/django-ormql"
[project.optional-dependencies]
dev = [
"pytest==9.*",
"pytest-cov",
"pytest-django",
"django<6.1",
"factory_boy==3.*",
"freezegun",
"ruff",
"check-manifest",
]
[tool.setuptools.dynamic]
version = { attr = "django_ormql.version" }
[tool.setuptools.packages.find]
include = ["django_ormql*"]