-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 1.7 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
[project]
name = "wagtail-tinytableblock"
description = "A Wagtail StreamField block powered by TinyMCE and its table plugin"
authors = [{name = "Dan Braghis", email = "dan.braghis@torchbox.com"}]
maintainers = [
{name = "Dan Braghis", email="dan.braghis@torchbox.com"}
]
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = [ "LICENSE" ]
keywords = ["Wagtail", "Django", "StreamField", "TinyMCE", "Tables"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
"Framework :: Wagtail",
"Framework :: Wagtail :: 6",
"Framework :: Wagtail :: 7",
]
dynamic = ["version"]
requires-python = ">=3.12"
dependencies = [
"Django>=4.2",
"Wagtail>=6.3",
"nh3>=0.3,<1"
]
[project.optional-dependencies]
testing = [
"dj-database-url>=3.0,<4",
"coverage>=7.10,<8.0",
]
[project.urls]
Source = "https://github.com/torchbox/wagtail-tinytableblock"
Changelog = "https://github.com/torchbox/wagtail-tinytableblock/blob/main/CHANGELOG.md"
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "wagtail_tinytableblock"
[tool.flit.sdist]
exclude = [
".*",
"*.db",
"*.json",
"*.ini",
"*.sqlite3",
"*.yaml",
"tests",
"CHANGELOG.md",
"ruff.toml",
]