-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (73 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
79 lines (73 loc) · 1.66 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
[build-system]
requires = ["setuptools>=77.0.0", "setuptools-scm>=8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "conjunto"
dynamic = ["version"]
description = "Django application framework/helpers using Tetra, tabler.io, tables2, crispy-forms & more."
authors = [
{ name = "Christian González", email = "christian.gonzalez@nerdocs.at" }
]
license = "MIT"
readme = "README.md"
keywords = ["python", "django", "tetra", "framework", "i18n"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python"
]
requires-python = ">=3.12"
dependencies = [
"django>=5.2",
"django-countries",
"django-phonenumber-field[phonenumberslite]",
"django-crispy-forms",
"crispy-bootstrap5",
"django-tables2",
"django-versionfield",
"django-markdownify",
"django-web-components",
"django-statici18n",
"gdaps>=0.11.0",
"django-extensions>=3.2",
"Pillow",
"tetra>=0.7.3",
]
[project.urls]
Homepage = "https://github.com/nerdocs/conjunto"
#Documentation = "https://conjunto.readthedocs.io"
Repository = "https://github.com/nerdocs/conjunto"
[dependency-groups]
dev = [
"build",
"twine",
"pytest",
"pytest-mock",
"pytest-django",
"pre-commit",
"black",
]
doc = [
"mkdocs",
"mkdocstrings-python",
"mkdocs-literate-nav",
"mkdocs-section-index",
"pymdown-extensions",
"pygments",
"mkdocs-api-autonav",
]
prod = [
]
[tool.uv]
package = true
[tool.setuptools.dynamic]
version = {attr = "conjunto.__version__"}
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--nomigrations"
testpaths = [
"tests"
]
pythonpath = [
"src"
]
[tools.uv.sources]