easy_whitelist 1.0.51__tar.gz → 1.0.53__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.
Files changed (24) hide show
  1. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/PKG-INFO +4 -3
  2. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/pyproject.toml +11 -14
  3. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/.gitignore +0 -0
  4. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/CODE_OF_CONDUCT.md +0 -0
  5. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/LICENSE +0 -0
  6. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/README.md +0 -0
  7. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/SECURITY.md +0 -0
  8. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/easy_whitelist/__init__.py +0 -0
  9. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/easy_whitelist/__main__.py +0 -0
  10. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/easy_whitelist/config/__init__.py +0 -0
  11. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/easy_whitelist/config/arg.py +0 -0
  12. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/easy_whitelist/ip/__init__.py +0 -0
  13. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/easy_whitelist/ip/agent.py +0 -0
  14. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/easy_whitelist/ip/ip.py +0 -0
  15. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/easy_whitelist/ip/pattern.py +0 -0
  16. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/easy_whitelist/ip/url.py +0 -0
  17. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/easy_whitelist/sample/common_client_sample.py +0 -0
  18. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/easy_whitelist/sample/cvm_sample_detail.py +0 -0
  19. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/easy_whitelist/sample/cvm_sample_simple.py +0 -0
  20. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/easy_whitelist/tcloud/__init__.py +0 -0
  21. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/easy_whitelist/tcloud/client.py +0 -0
  22. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/easy_whitelist/tcloud/template.py +0 -0
  23. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/tests/.gitkeep +0 -0
  24. {easy_whitelist-1.0.51 → easy_whitelist-1.0.53}/tests/test.py +0 -0
@@ -1,8 +1,8 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: easy_whitelist
3
- Version: 1.0.51
3
+ Version: 1.0.53
4
4
  Summary: Easy_whitelist is a smart tool that detects the local Internet IP address and automatically updates the local Internet IP address to the cloud security group whitelist. The tool is written in Python.
5
- Keywords: automation,whitelist,acl,security-groups,alibaba-cloud,tencent-cloud,security-tools,security-group-rule
5
+ Keywords: whitelist,security-groups,alibaba-cloud,tencent-cloud,security-tools
6
6
  Author: qiqilelebaobao
7
7
  Author-email: qiqilelebaobao <qiqilelebaobao@163.com>
8
8
  Maintainer-email: qiqilelebaobao <qiqilelebaobao@163.com>
@@ -20,6 +20,7 @@ Classifier: Programming Language :: Python :: 3.11
20
20
  Classifier: Programming Language :: Python :: 3.12
21
21
  Classifier: Programming Language :: Python :: 3.13
22
22
  Classifier: Programming Language :: Python :: 3.14
23
+ License-File: LICENSE
23
24
  Requires-Dist: tencentcloud-sdk-python
24
25
  Requires-Dist: rich ; extra == "cli"
25
26
  Requires-Dist: click ; extra == "cli"
@@ -1,16 +1,23 @@
1
1
  [build-system]
2
- requires = ["flit_core"]
3
- build-backend = "flit_core.buildapi"
2
+ requires = ["setuptools >= 77.0.3"]
3
+ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "easy_whitelist"
7
+ version = '1.0.53'
8
+ description = 'Easy_whitelist is a smart tool that detects the local Internet IP address and automatically updates the local Internet IP address to the cloud security group whitelist. The tool is written in Python.'
9
+
7
10
  authors = [
8
11
  {name = "qiqilelebaobao"},
9
12
  {name = "qiqilelebaobao", email = "qiqilelebaobao@163.com"}
10
13
  ]
11
- requires-python = ">= 3.6"
14
+ maintainers = [
15
+ {name = "qiqilelebaobao", email = "qiqilelebaobao@163.com"}
16
+ ]
12
17
 
18
+ requires-python = ">= 3.6"
13
19
  readme = "README.md"
20
+ keywords = ["whitelist", "security-groups", "alibaba-cloud", "tencent-cloud", "security-tools"]
14
21
 
15
22
  license = { file = "LICENSE" }
16
23
 
@@ -32,17 +39,6 @@ classifiers = [
32
39
  dependencies = [
33
40
  "tencentcloud-sdk-python",
34
41
  ]
35
- maintainers = [
36
- {name = "qiqilelebaobao", email = "qiqilelebaobao@163.com"}
37
- ]
38
-
39
- keywords = ["automation", "whitelist", "acl",
40
- "security-groups", "alibaba-cloud", "tencent-cloud",
41
- "security-tools", "security-group-rule"]
42
-
43
- description = 'Easy_whitelist is a smart tool that detects the local Internet IP address and automatically updates the local Internet IP address to the cloud security group whitelist. The tool is written in Python.'
44
-
45
- version = '1.0.51'
46
42
 
47
43
  # dynamic = ["version", "description"]
48
44
 
@@ -64,4 +60,5 @@ cli = [
64
60
  include = [
65
61
  "SECURITY.md",
66
62
  "CODE_OF_CONDUCT.md",
63
+ "tests/"
67
64
  ]
File without changes