-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 927 Bytes
/
pyproject.toml
File metadata and controls
45 lines (38 loc) · 927 Bytes
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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "self_reporting_bot"
description = "Delta Chat bot to collect statistics from users"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
keywords = ["deltachat", "bot", "deltabot-cli"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
]
dynamic = ["version"]
dependencies = [
"deltabot-cli>=6.0.0,<7.0",
]
[project.optional-dependencies]
dev = [
"black",
"mypy",
"isort",
"pylint",
"pylama",
"pytest",
]
[project.scripts]
self_reporting_bot = "self_reporting_bot:main"
[tool.setuptools_scm]
# can be empty if no extra settings are needed, presence enables setuptools_scm
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = "True"