-
-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathpyproject.toml
63 lines (56 loc) · 1.91 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "px-proxy"
version = "0.10.0"
description = "An HTTP proxy server to automatically authenticate through an NTLM proxy"
authors = [
{name = "Ganesh Viswanathan", email = "[email protected]"}
]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Win32 (MS Windows)",
"Environment :: MacOS X",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"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",
"Topic :: Internet :: Proxy Servers"
]
dependencies = [
"keyring",
"netaddr",
"psutil",
"pymcurl",
"pyspnego",
"python-dotenv",
"quickjs"
]
[project.urls]
Homepage = "https://github.com/genotrance/px"
Repository = "https://github.com/genotrance/px"
Issues = "https://github.com/genotrance/px/issues"
[project.scripts]
px = "px.main:main"
[tool.setuptools]
packages = ["px"]
[tool.tox]
envlist = ["py38", "py39", "py310", "py311", "py312", "py313", "binary"]
[tool.tox.env_run_base]
commands_pre = [["uv", "pip", "install", "keyring", "psutil", "pytest", "pytest-xdist", "pytest-httpbin"]]
commands = [["pytest", "-n", "auto", "tests"]]
passenv = ["DBUS_SESSION_BUS_ADDRESS", "UV_PYTHON_PREFERENCE"]
[tool.tox.env.binary]
passenv = ["PXBIN", "DBUS_SESSION_BUS_ADDRESS"]