-
Notifications
You must be signed in to change notification settings - Fork 39
/
pyproject.toml
140 lines (127 loc) · 3.47 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
[project]
name = "Western-Friend-website"
version = "0.1.0"
description = "A website for Western Friend (westernfriend.org), a Quaker publication that provides resources and support for Quaker communities and individuals seeking to live out their faith in the world."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "agpl-3.0-or-later" }
authors = [
{ name = "Brylie Christopher Oxley", email = "brylie@amble.fi" },
{ name = "Mary Klein", email = "editor@westernfriend.org" },
{ name = "Western Friend" },
{ name = "Western Friend Board" },
]
maintainers = [{ name = "Brylie Christopher Oxley", email = "brylie@amble.fi" }]
keywords = [
# keep-sorted start
"django",
"interfaith",
"quaker",
"quaker-activism",
"quaker-archives",
"quaker-arts",
"quaker-ecology",
"quaker-ecumenism",
"quaker-education",
"quaker-epistles",
"quaker-faith",
"quaker-faith-and-practice",
"quaker-friends",
"quaker-history",
"quaker-letters",
"quaker-meetings",
"quaker-organizations",
"quaker-peace",
"quaker-philanthropy",
"quaker-philosophy",
"quaker-testimonies",
"quaker-worship",
"quakerism",
"wagtail",
"website",
"western-friend",
# keep-sorted end
]
classifiers = [
# keep-sorted start
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django :: 3.2",
"Framework :: Django",
"Framework :: Wagtail",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python",
"Topic :: Religion :: Quaker",
"Topic :: Religion",
# keep-sorted end
]
dependencies = [
# keep-sorted start
"boto3",
"crispy-bootstrap5",
"dj-database-url",
"django",
"django-crispy-forms",
"django-extensions",
"django-flatpickr",
"django-honeypot",
"django-registration",
"django-storages",
"django-timezone-field",
"django_coverage_plugin",
"gunicorn",
"psycopg2-binary",
"python-dotenv",
"requests",
"sentry-sdk",
"tzdata",
"wagtail",
"wagtail-color-panel",
"wagtailmedia",
# keep-sorted end
]
[project.urls]
Homepage = "https://westernfriend.org"
Repository = "https://github.com/WesternFriend/WF-website"
[project.optional-dependencies]
dev = [
# keep-sorted start
"coverage",
"django-browser-reload",
"django-stubs[compatible-mypy]",
"factory_boy",
"mypy",
"pip-tools",
"pre-commit",
"types-beautifulsoup4",
"types-factory-boy",
"types-requests",
"validate-pyproject",
"wagtail-factories",
# keep-sorted end
]
[tool.isort]
profile = "black"
# TODO: add this back in when we figure out how to make it work
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
[[tool.mypy.overrides]]
module = "wagtail.*"
ignore_missing_imports = true
[tool.django-stubs]
django_settings_module = "core.settings"
# Exclude a variety of commonly ignored directories.
exclude = [".git", ".mypy_cache", ".ruff_cache", ".venv", "**/migrations"]
# Assume Python 3.11
target-version = "py311"
[tool.setuptools]
py-modules = []
[tool.coverage.run]
plugins = ['django_coverage_plugin']
[tool.coverage.django_coverage_plugin]
template_extensions = 'html, txt, tex, email'