rkn-block-checker/pyproject.toml
2026-04-29 22:31:04 +03:00

53 lines
1.5 KiB
TOML

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rkn-block-checker"
version = "0.1.0"
description = "Diagnose RKN/TSPU internet blocks layer by layer (DNS, TCP, TLS, HTTP)."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [{ name = "Dmitry Vinogradov" }]
keywords = ["rkn", "tspu", "censorship", "network", "diagnostics", "dpi"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet",
"Topic :: System :: Networking :: Monitoring",
]
dependencies = [
"requests>=2.31",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4",
"pytest-cov>=4.1",
]
[project.scripts]
rkn-check = "rkn_checker.cli:main"
[project.urls]
Homepage = "https://github.com/MayersScott/rkn-block-checker"
Repository = "https://github.com/MayersScott/rkn-block-checker"
Issues = "https://github.com/MayersScott/rkn-block-checker/issues"
[tool.setuptools.packages.find]
include = ["rkn_checker*"]
exclude = ["tests*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-ra --strict-markers"