-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
65 lines (56 loc) · 1.43 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
60
61
62
63
64
65
[build-system]
requires = ["setuptools>=69", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "deltachat-cursed"
description = "Delta Chat client for the command line"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.8"
keywords = ["deltachat", "ncurses", "tui"]
authors = [
{name = "adbenitez", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
]
dependencies = [
"deltachat2>=0.2.0",
"urwid>=2.6.10",
"urwid-readline>=0.14",
"appdirs>=1.4.4",
]
[project.urls]
Homepage = "https://github.com/adbenitez/deltachat-cursed"
Issues = "https://github.com/adbenitez/deltachat-cursed/issues"
[project.optional-dependencies]
full = [
"deltachat-rpc-server>=1.136.6",
]
dev = [
"deltachat-rpc-server",
"black",
"mypy",
"isort",
"pylint",
"pylama",
"pytest",
]
[project.scripts]
curseddelta = "deltachat_cursed.main:main"
delta = "deltachat_cursed.main:main"
[tool.setuptools]
packages = ["deltachat_cursed"]
[tool.setuptools_scm]
# can be empty if no extra settings are needed, presence enables setuptools_scm
version_file = "deltachat_cursed/_version.py"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = "True"