-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (55 loc) · 1.42 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
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["setuptools>=61.0.0", "setuptools-scm>=8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "conjunto"
dynamic = ["version"]
description = "Django application framework/helpers using HTMX, tabler.io, tables2, crispy-forms & more."
authors = [
{ name = "Christian González", email = "[email protected]" }
]
license = {file = "LICENSE"}
readme = "README.md"
keywords = ["python", "django", "htmx", "framework", "i18n"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python"
]
dependencies = [
"django~=4.2",
"django-countries",
"django-phonenumber-field[phonenumberslite]",
"django-crispy-forms",
"crispy-bootstrap5",
"django-htmx",
"django-tables2",
"django-versionfield",
"django-markdownify",
"django-web-components",
"django-statici18n",
"gdaps>=0.8.5",
"django-extensions>=3.2",
"Pillow",
"tetra>=0.1.1"
]
[project.urls]
Homepage = "https://github.com/nerdocs/conjunto"
#Documentation = "https://conjunto.readthedocs.io"
Repository = "https://github.com/nerdocs/conjunto"
[project.optional-dependencies]
dev = [
"build",
"twine",
"pytest",
"pre-commit",
"black",
]
doc = [
"mkdocs",
"mkdocstrings[python]",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-section-index",
]
[tool.setuptools.dynamic]
version = {attr = "conjunto.__version__"}