-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.46 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
50
51
[project]
name = "django-cte"
description = "Common Table Expressions (CTE) for Django"
authors = [{name = "Daniel Miller", email = "[email protected]"}]
license = {file = "LICENSE"}
readme = {file = "README.md", content-type = "text/markdown"}
dynamic = ["version"]
requires-python = ">= 3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Framework :: Django',
'Framework :: Django :: 4',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5',
'Framework :: Django :: 5.0',
'Framework :: Django :: 5.1',
'Topic :: Software Development :: Libraries :: Python Modules',
]
dependencies = ["django"]
[project.optional-dependencies]
test = [
"psycopg2-binary",
"pytest-unmagic",
"ruff",
]
[project.urls]
Home = "https://github.com/dimagi/django-cte"
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "django_cte"
[tool.distutils.bdist_wheel]
universal = true