mirror of
https://github.com/ArcaneChat/arcanechat-tui.git
synced 2026-06-02 03:43:35 +02:00
66 lines
1.4 KiB
TOML
66 lines
1.4 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=69", "setuptools_scm>=8"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "arcanechat-tui"
|
|
description = "ArcaneChat client for the command line"
|
|
dynamic = ["version"]
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
keywords = ["deltachat", "ncurses", "tui", "arcanechat"]
|
|
authors = [
|
|
{name = "adbenitez", email = "adb@merlinux.eu"},
|
|
]
|
|
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.9.0",
|
|
"urwid==3.0.5",
|
|
"urwid-readline==0.15.1",
|
|
"appdirs==1.4.4",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/ArcaneChat/arcanechat-tui"
|
|
Issues = "https://github.com/ArcaneChat/arcanechat-tui/issues"
|
|
|
|
[project.optional-dependencies]
|
|
full = [
|
|
"deltachat-rpc-server==2.39.0",
|
|
]
|
|
dev = [
|
|
"deltachat-rpc-server",
|
|
"black",
|
|
"mypy",
|
|
"isort",
|
|
"pylint",
|
|
"pylama",
|
|
"pytest",
|
|
]
|
|
|
|
[project.scripts]
|
|
arcanechat-tui = "arcanechat_tui.main:main"
|
|
arcanechat = "arcanechat_tui.main:main"
|
|
|
|
[tool.setuptools]
|
|
packages = ["arcanechat_tui"]
|
|
|
|
[tool.setuptools_scm]
|
|
# can be empty if no extra settings are needed, presence enables setuptools_scm
|
|
version_file = "arcanechat_tui/_version.py"
|
|
|
|
[tool.black]
|
|
line-length = 100
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
|
|
[tool.mypy]
|
|
ignore_missing_imports = "True"
|