-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
28 lines (26 loc) · 1015 Bytes
/
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
[tool.poetry]
name = "Uniproxy"
version = "0.1.3"
description="Cross platform python library to set system-wide proxy and bypass domains for proxy."
authors = ["kun-codes <[email protected]>"]
license = "LGPL-2.0-or-later"
readme = "README.md"
repository = "https://github.com/kun-codes/Uniproxy"
keywords = ["proxy", "system-wide", "cross-platform", "bypass domains"]
classifiers = [
"Topic :: Internet :: Proxy Servers",
"Topic :: System :: Networking",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"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",
]
[tool.poetry.dependencies]
python = "^3.8"
xdg = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"