File: pyproject.toml

package info (click to toggle)
hyperkitty 1.3.12-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 10,996 kB
  • sloc: javascript: 38,879; python: 12,081; makefile: 157; sh: 5
file content (80 lines) | stat: -rw-r--r-- 1,647 bytes parent folder | download
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
[project]
name = "HyperKitty"
dynamic = []
description = "A web interface to access GNU Mailman v3 archives"
keywords = [
    "email",
]
readme = "README.rst"
authors = [
    { name = "Mailman Developers", email = "mailman-developers@python.org" },
]
classifiers = [
    "Development Status :: 4 - Beta",
    "Framework :: Django",
    "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
    "Programming Language :: JavaScript",
    "Programming Language :: Python :: 3",
    "Topic :: Communications :: Email :: Mailing List Servers",
]
dependencies = [
    "django-compressor>=1.3",
    "django-extensions>=1.3.7",
    "django-gravatar2>=1.0.6",
    "django-haystack>=2.8.0",
    "django-q2>=1.0.0",
    "django>=4.2,<5.1",
    "django_mailman3>=1.3.13",
    "djangorestframework>=3.0.0",
    "flufl.lock>=4.0",
    "mailmanclient>=3.3.3",
    "mistune>=3.0",
    "networkx>=2.0",
    "python-dateutil >= 2.0",
    "robot-detection>=0.3",
]
requires-python = ">=3.9"
version = "1.3.12"

[project.license]
text = "GPLv3"

[project.urls]
Homepage = "https://gitlab.com/mailman/hyperkitty"

[project.optional-dependencies]
dev = [
    "isort",
    "Whoosh>=2.5.7",
    "django-debug-toolbar",
]
test = [
    "Whoosh>=2.5.7",
    "beautifulsoup4>=4.3.2",
    "lxml",
    "django-debug-toolbar",
]

[build-system]
requires = [
    "pdm-backend",
]
build-backend = "pdm.backend"

[tool.pdm.version]
source = "file"
path = "hyperkitty/__init__.py"

[tool.pdm.build]
includes = [
    "hyperkitty/",
]
source-includes = [
    "example_project/",
    "doc/",
    "*.rst",
    "*.ini",
    "*.txt",
    ".eslint.yml",
    ".coveragerc",
]