-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (60 loc) · 2 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools~=75.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gwhosts-proxy"
authors = [{name="SharUpOff", email = "[email protected]"}]
description = "DNS proxy/router for a specified list of hostnames"
readme = "README.md"
license = {file = "LICENSE.md"}
requires-python = ">=3.8, <=3.13"
dependencies = ["pyroute2~=0.7.0"]
version = "1.0.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: System :: Networking",
"Topic :: System :: Networking :: Firewalls",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: Internet :: Proxy Servers",
"Framework :: tox",
]
[project.optional-dependencies]
test = ["pytest~=8.0", "pytest-mock~=3.0", "pytest-cov~=5.0"]
[project.urls]
homepage = "https://github.com/sharupoff/gwhosts-proxy"
[tool.pytest.ini_options]
pythonpath = [
"."
]
addopts = "-ra -q --cov-report term-missing --cov-append --cov gwhosts"
[tool.ruff]
line-length = 119
indent-width = 4
target-version = "py37"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.mypy]
explicit_package_bases = true
install_types = true
non_interactive = true
exclude = ["env", "venv", "build"]
[tool.setuptools.packages.find]
include = ["gwhosts.*"]