-
Notifications
You must be signed in to change notification settings - Fork 626
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (78 loc) · 2.46 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (78 loc) · 2.46 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "errbot"
dynamic = ["version", "readme"]
description = "Errbot is a chatbot designed to be simple to extend with plugins written in Python."
authors = [{name = "errbot.io", email = "info@errbot.io"}]
license = "GPL-3.0-or-later"
license-files = ["COPYING"]
requires-python = ">=3.10"
keywords = ["xmpp", "irc", "slack", "hipchat", "gitter", "tox", "chatbot", "bot", "plugin", "chatops"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Communications :: Chat",
"Topic :: Communications :: Chat :: Internet Relay Chat",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"setuptools>=78.1.1",
"flask==3.1.3",
"requests==2.33.0",
"jinja2==3.1.6",
"pyOpenSSL==26.1.0",
"colorlog==6.10.1",
"markdown==3.10.2",
"ansi==0.3.7",
"Pygments==2.20.0",
"pygments-markdown-lexer==0.1.0.dev39",
"dulwich==1.2.10",
"deepmerge==2.0",
'daemonize==2.5.0; sys_platform != "win32"',
]
[project.optional-dependencies]
slack = ["errbot-backend-slackv3==0.3.2"]
discord = ["err-backend-discord==3.0.1"]
mattermost = ["err-backend-mattermost==3.0.0"]
IRC = ["irc==20.5.0"]
telegram = ["python-telegram-bot==13.15"]
XMPP = [
"slixmpp==1.12.0; python_version < '3.11'",
"slixmpp==1.15.0; python_version >= '3.11'",
"pyasn1==0.6.3",
"pyasn1-modules==0.4.2",
]
test = ["pytest", "requests"]
[project.urls]
Homepage = "http://errbot.io/"
[project.scripts]
errbot = "errbot.cli:main"
[tool.setuptools.dynamic]
version = {attr = "errbot.version.VERSION"}
readme = {file = ["README.rst", "CHANGES.rst"], content-type = "text/x-rst"}
[tool.setuptools.packages.find]
include = ["errbot", "errbot.*"]
[tool.setuptools.package-data]
errbot = [
"backends/*.plug",
"backends/*.html",
"backends/styles/*.css",
"backends/images/*.svg",
"core_plugins/*.plug",
"core_plugins/*.md",
"core_plugins/templates/*.md",
"storage/*.plug",
"templates/initdir/example.py",
"templates/initdir/example.plug",
"templates/initdir/config.py.tmpl",
"templates/*.md",
"templates/new_plugin.py.tmpl",
]
[tool.ruff.lint.per-file-ignores]
"tests/borken_plugin/broken.py" = ["F401"]