Rename all crate directories, package names, binary names, proto package/module paths, ALPN strings, env var prefixes, config filenames, mDNS service names, and plugin ABI symbols from quicproquo/qpq to quicprochat/qpc.
56 lines
1.4 KiB
TOML
56 lines
1.4 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=68.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "quicprochat"
|
|
version = "0.1.0"
|
|
description = "Python SDK for quicprochat E2E encrypted messenger"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
requires-python = ">=3.10"
|
|
authors = [{ name = "quicprochat contributors" }]
|
|
keywords = ["quicprochat", "e2e", "encrypted", "messaging", "quic"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Topic :: Communications :: Chat",
|
|
"Topic :: Security :: Cryptography",
|
|
"Framework :: AsyncIO",
|
|
]
|
|
|
|
dependencies = [
|
|
"aioquic>=1.0.0",
|
|
"protobuf>=5.26.0",
|
|
"cffi>=1.16.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pytest-asyncio>=0.23",
|
|
"mypy>=1.8",
|
|
"ruff>=0.3",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/nicholasgasior/quicprochat"
|
|
Repository = "https://github.com/nicholasgasior/quicprochat"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["quicprochat*"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py310"
|
|
line-length = 99
|
|
|
|
[tool.mypy]
|
|
python_version = "3.10"
|
|
strict = true
|