pymecli 0.1.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.
- pymecli-0.1.0/.gitignore +17 -0
- pymecli-0.1.0/PKG-INFO +18 -0
- pymecli-0.1.0/README.md +5 -0
- pymecli-0.1.0/pyproject.toml +37 -0
pymecli-0.1.0/.gitignore
ADDED
pymecli-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pymecli
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: My cli
|
|
5
|
+
Project-URL: Homepage, https://pypi.org/project/pymecli
|
|
6
|
+
Project-URL: Repository, https://github.com/meme2046/pymecli
|
|
7
|
+
License: MIT
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# clash订阅转换fastapi server
|
|
15
|
+
|
|
16
|
+
```shell
|
|
17
|
+
uv run clash --host 0.0.0.0 --port 7777 --proxy "socks5://192.168.123.7:7890"
|
|
18
|
+
```
|
pymecli-0.1.0/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
classifiers = [
|
|
3
|
+
"Intended Audience :: Developers",
|
|
4
|
+
"License :: OSI Approved :: MIT License",
|
|
5
|
+
"Programming Language :: Python :: 3",
|
|
6
|
+
]
|
|
7
|
+
dependencies = []
|
|
8
|
+
description = "My cli"
|
|
9
|
+
license = { text = "MIT" }
|
|
10
|
+
name = "pymecli"
|
|
11
|
+
readme = "README.md"
|
|
12
|
+
requires-python = ">=3.10"
|
|
13
|
+
version = "0.1.0"
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://pypi.org/project/pymecli"
|
|
17
|
+
Repository = "https://github.com/meme2046/pymecli"
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
[tool.uv]
|
|
21
|
+
required-environments = [
|
|
22
|
+
"sys_platform == 'win32' and platform_machine == 'AMD64'",
|
|
23
|
+
]
|
|
24
|
+
[[tool.uv.index]]
|
|
25
|
+
default = true
|
|
26
|
+
url = "https://mirrors.aliyun.com/pypi/simple/"
|
|
27
|
+
|
|
28
|
+
[tool.hatch.build]
|
|
29
|
+
exclude = []
|
|
30
|
+
packages = ["crypto", "mecli", "utils"]
|
|
31
|
+
|
|
32
|
+
[build-system]
|
|
33
|
+
build-backend = "hatchling.build"
|
|
34
|
+
requires = ["hatchling"]
|
|
35
|
+
|
|
36
|
+
[dependency-groups]
|
|
37
|
+
dev = ["ipykernel", "ruff"]
|