mirror of
https://github.com/MayersScott/rkn-block-checker.git
synced 2026-06-28 20:01:24 +00:00
53 lines
1.5 KiB
TOML
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"
|