-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
64 lines (55 loc) · 1.37 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "chatmail2mastodon"
description = "Mastodon/DeltaChat bridge"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.10"
keywords = ["deltachat", "bot", "mastodon", "chatmail"]
authors = [
{name = "adbenitez", email = "adb@arcanechat.me"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
]
dependencies = [
"deltabot-cli>=8.0.0,<9.0",
"Mastodon.py>=2.1.4",
"html2text>=2025.4.15",
"beautifulsoup4>=4.14.2,<5.0",
"requests>=2.32.4,<3.0",
"pydub>=0.25.1",
"SQLAlchemy>=2.0.43,<3.0",
]
[project.urls]
Homepage = "https://github.com/deltachat-bot/chatmail2mastodon"
[project.optional-dependencies]
dev = [
"black",
"mypy",
"isort",
"pylint",
"pylama",
"pytest",
"setuptools",
"types-requests",
]
[project.scripts]
chatmail2mastodon = "chatmail2mastodon:main"
[tool.setuptools_scm]
# can be empty if no extra settings are needed, presence enables setuptools_scm
write_to = "chatmail2mastodon/_version.py"
[tool.setuptools]
packages = [ "chatmail2mastodon" ]
zip-safe = false
include-package-data = true
[tool.isort]
profile = "black"
[tool.black]
line-length = 100
[tool.mypy]
ignore_missing_imports = "True"