-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (67 loc) · 2.15 KB
/
pyproject.toml
File metadata and controls
76 lines (67 loc) · 2.15 KB
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
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "gwhosts-proxy"
authors = [{name="SharUpOff", email = "sharupoff@efstudios.org"}]
description = "DNS proxy/router for a specified list of hostnames"
readme = "README.md"
license = {file = "LICENSE.md"}
requires-python = ">=3.9, <3.16"
dependencies = ["pyroute2>=0.5,<0.9"]
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"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", "pytest-mock", "pytest-cov"]
mypy = ["mypy"]
[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 = "py39"
[tool.ruff.lint]
extend-select = ["UP"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.mypy]
python_version = "3.9"
strict = true
ignore_missing_imports = true
explicit_package_bases = true
install_types = true
non_interactive = true
exclude = ["env", "venv", "build"]
[tool.setuptools.packages.find]
include = ["gwhosts.*"]