mirror of
https://github.com/chatmail/core.git
synced 2026-04-05 15:02:11 +03:00
54 lines
1.5 KiB
TOML
54 lines
1.5 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=45", "wheel", "cffi>=1.0.0", "pkgconfig"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "deltachat"
|
|
version = "1.138.0"
|
|
description = "Python bindings for the Delta Chat Core library using CFFI against the Rust-implemented libdeltachat"
|
|
readme = "README.rst"
|
|
requires-python = ">=3.7"
|
|
authors = [
|
|
{ name = "holger krekel, Floris Bruynooghe, Bjoern Petersen and contributors" },
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Communications :: Chat",
|
|
"Topic :: Communications :: Email",
|
|
"Topic :: Software Development :: Libraries",
|
|
]
|
|
dependencies = [
|
|
"cffi>=1.0.0",
|
|
"imap-tools",
|
|
"importlib_metadata;python_version<'3.8'",
|
|
"pluggy",
|
|
"requests",
|
|
]
|
|
|
|
[project.urls]
|
|
"Home" = "https://github.com/deltachat/deltachat-core-rust/"
|
|
"Bug Tracker" = "https://github.com/deltachat/deltachat-core-rust/issues"
|
|
"Documentation" = "https://py.delta.chat/"
|
|
"Mastodon" = "https://chaos.social/@delta"
|
|
|
|
[project.entry-points.pytest11]
|
|
"deltachat.testplugin" = "deltachat.testplugin"
|
|
|
|
[tool.setuptools.package-data]
|
|
deltachat = [
|
|
"py.typed"
|
|
]
|
|
|
|
[tool.black]
|
|
line-length = 120
|
|
|
|
[tool.ruff]
|
|
lint.select = ["E", "F", "W", "YTT", "C4", "ISC", "ICN", "TID", "DTZ", "PLC", "PLE", "PLW", "PIE", "COM", "UP004", "UP010", "UP031", "UP032", "ANN204"]
|
|
line-length = 120
|
|
|
|
[tool.isort]
|
|
profile = "black"
|