-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (90 loc) · 2.55 KB
/
pyproject.toml
File metadata and controls
99 lines (90 loc) · 2.55 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
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
[project]
name = "flaskbb-plugin-conversations"
version = "2.0.1"
dependencies = [
"FlaskBB>=2.1.0",
]
requires-python = ">=3.12"
authors = [
{name = "Peter Justin", email = "peter.justin@outlook.com"},
]
maintainers = [
{name = "Peter Justin", email = "peter.justin@outlook.com"}
]
description = "A private messaging plugin for FlaskBB"
readme = "README.md"
license = "BSD-3-Clause"
license-files = ["LICEN[CS]E"]
keywords = ["flaskbb", "plugin", "conversations", "messaging"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Flask",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
Homepage = "https://github.com/flaskbb/flaskbb-plugin-conversations"
Repository = "https://github.com/flaskbb/flaskbb-plugin-conversations"
Issues = "https://github.com/flaskbb/flaskbb-plugin-conversations/issues"
Changelog = "https://github.com/flaskbb/flaskbb-plugin-conversations/blob/master/CHANGELOG.md"
[project.entry-points.'flaskbb_plugins']
conversations = 'conversations'
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"hatch",
"Babel",
"alabaster",
"cov-core",
"coverage",
"freezegun",
"ipython",
"pre-commit",
"py",
"pytest",
"ruff",
]
[tool.hatch.build.targets.sdist]
only-include = ["conversations", "tests"]
[tool.hatch.build.targets.wheel]
packages = ["conversations"]
[tool.uv]
package = true
[tool.hatch.metadata]
allow-direct-references = true
[tool.basedpyright]
include = ["conversations"]
exclude = ["**/node_modules", "**/resources", "**/__pycache__", "**/docs", "**/whoosh_index"]
defineConstant = { DEBUG = true }
reportIgnoreCommentWithoutRule = false
reportMissingImports = "error"
reportMissingTypeStubs = false
reportUnusedCallResult = false
reportUnannotatedClassAttribute = false
reportUnusedParameter = false
reportAny = false
reportExplicitAny = false
[tool.pytest]
minversion = "9.0"
addopts = [
"-vvl",
"--strict-markers",
"--capture", "fd",
"--tb", "short",
"--pythonwarnings", "error::flaskbb.deprecation.FlaskBBDeprecation",
"--dist", "load"
]
testpaths = [
"tests",
]
[tool.ruff.lint]
ignore = ["E711", "E712"]