Skip to content

Commit 7bee462

Browse files
Add files via upload
1 parent f7e3e99 commit 7bee462

File tree

1 file changed

+32
-2
lines changed

1 file changed

+32
-2
lines changed

pyproject.toml

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
11
[build-system]
2-
requires = ["setuptools>=61.0"]
3-
build-backend = "setuptools.build_meta"
2+
requires = ["setuptools>=61.0", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "python_v2ray"
7+
version = "0.1.2"
8+
description = "A powerful, high-level Python wrapper for managing and testing V2Ray/Xray-core and Hysteria clients."
9+
readme = "README.md"
10+
license = "GPL-3.0-only"
11+
authors = [
12+
{ name="arshiacomplus", email="arshiacomplus@gmail.com" },
13+
]
14+
requires-python = ">=3.8"
15+
dependencies = [
16+
"requests",
17+
"grpcio",
18+
"protobuf",
19+
]
20+
21+
classifiers = [
22+
"Programming Language :: Python :: 3",
23+
"Operating System :: OS Independent",
24+
"Intended Audience :: Developers",
25+
"Topic :: Internet :: Proxy Servers",
26+
"Topic :: System :: Networking",
27+
]
28+
29+
[tool.setuptools]
30+
packages = ["python_v2ray"]
31+
32+
[tool.setuptools.package-data]
33+
python_v2ray = ["vendor/*", "core_engine/*"]

0 commit comments

Comments
 (0)