-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (63 loc) · 1.75 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
63
64
65
66
67
68
69
70
[project]
name = "migration-lite-streamfield"
description = "All the goodness of Wagtail's StreamField, but without the migration headaches!"
authors = [{name = "Andy Babic ", email = "[email protected]"}]
maintainers = [
{name = "Andy Babic", email = "[email protected]"},
]
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["Django", "Wagtail", "StreamField", "migration", "lite"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.1",
"Framework :: Wagtail",
"Framework :: Wagtail :: 6",
]
dynamic = ["version"]
requires-python = ">=3.11"
dependencies = [
"Django>=4.2",
]
[project.optional-dependencies]
testing = [
"Wagtail>=5.2",
"dj-database-url>=2.1.0,<3.0",
"coverage>=7.0,<8.0",
]
type-checking = [
"mypy>=1.9.0,<2.0",
"django-stubs>=4.2.7,<5.0",
"django-stubs-ext>=4.2.7,<5.0",
"types-setuptools>=69.0.0,<70.0",
]
[project.urls]
Source = "https://github.com/torchbox/migration-lite-streamfield"
Changelog = "https://github.com/torchbox/migration-lite-streamfield/blob/main/CHANGELOG.md"
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "mlstreamfield"
[tool.flit.sdist]
exclude = [
".*",
"*.db",
"*.json",
"*.ini",
"*.sqlite3",
"*.yaml",
"tests",
"CHANGELOG.md",
"ruff.toml",
"manage.py",
]