sb2p 0.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sb2p-0.3.0/PKG-INFO +10 -0
- sb2p-0.3.0/pyproject.toml +22 -0
- sb2p-0.3.0/sb2p/__init__.py +2 -0
- sb2p-0.3.0/sb2p.egg-info/PKG-INFO +10 -0
- sb2p-0.3.0/sb2p.egg-info/SOURCES.txt +8 -0
- sb2p-0.3.0/sb2p.egg-info/dependency_links.txt +1 -0
- sb2p-0.3.0/sb2p.egg-info/entry_points.txt +2 -0
- sb2p-0.3.0/sb2p.egg-info/requires.txt +1 -0
- sb2p-0.3.0/sb2p.egg-info/top_level.txt +1 -0
- sb2p-0.3.0/setup.cfg +4 -0
sb2p-0.3.0/PKG-INFO
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sb2p
|
|
3
|
+
Version: 0.3.0
|
|
4
|
+
Summary: Alias for singbox2proxy — pip install sb2p
|
|
5
|
+
Author-email: nichind <nichind@proton.me>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/nichind/singbox2proxy
|
|
8
|
+
Keywords: sing-box,proxy,sb2p,singbox2proxy
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Requires-Dist: singbox2proxy==0.3.0
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "sb2p"
|
|
7
|
+
version = "0.3.0"
|
|
8
|
+
authors = [{name = "nichind", email = "nichind@proton.me"}]
|
|
9
|
+
description = "Alias for singbox2proxy — pip install sb2p"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
keywords = ["sing-box", "proxy", "sb2p", "singbox2proxy"]
|
|
13
|
+
dependencies = ["singbox2proxy==0.3.0"]
|
|
14
|
+
|
|
15
|
+
[project.scripts]
|
|
16
|
+
sb2p = "singbox2proxy.__main__:main"
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
Homepage = "https://github.com/nichind/singbox2proxy"
|
|
20
|
+
|
|
21
|
+
[tool.setuptools]
|
|
22
|
+
packages = ["sb2p"]
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sb2p
|
|
3
|
+
Version: 0.3.0
|
|
4
|
+
Summary: Alias for singbox2proxy — pip install sb2p
|
|
5
|
+
Author-email: nichind <nichind@proton.me>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/nichind/singbox2proxy
|
|
8
|
+
Keywords: sing-box,proxy,sb2p,singbox2proxy
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Requires-Dist: singbox2proxy==0.3.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
singbox2proxy==0.3.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
sb2p
|
sb2p-0.3.0/setup.cfg
ADDED