-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.24 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "stickersbot"
description = "Sticker packs for all your Delta Chat needs"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.8"
keywords = ["deltachat", "bot"]
authors = [
{name = "adbenitez", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
]
dependencies = [
"deltabot-cli>=6.1.0,<7.0",
"signalstickers-client>=3.1.0",
"emoji>=1.6.1",
"cachelib>=0.7.0",
"requests>=2.26.0",
"pillow>=10.3.0",
"rembg>=2.0.56",
]
[project.urls]
Homepage = "https://github.com/deltachat-bot/stickersbot"
[project.optional-dependencies]
dev = [
"black",
"mypy",
"isort",
"pylint",
"pylama",
"pytest",
"types-emoji",
"types-requests",
]
[project.scripts]
stickersbot = "stickersbot:main"
[tool.setuptools_scm]
# can be empty if no extra settings are needed, presence enables setuptools_scm
version_file = "stickersbot/_version.py"
[tool.setuptools]
packages = ["stickersbot"]
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = "True"