coocan 0.5.3__tar.gz → 0.5.3.1__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.
@@ -1,15 +1,19 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: coocan
3
- Version: 0.5.3
4
- Summary: Air Spider Framework
3
+ Version: 0.5.3.1
4
+ Summary: Air Async Spider Framework
5
5
  Home-page: https://github.com/markadc/coocan
6
6
  Author: wauo
7
- Author-email: markadc@126.com
7
+ Author-email: wauo <markadc@126.com>
8
+ Project-URL: Homepage, https://github.com/markadc/coocan
8
9
  Requires-Python: >=3.10
9
10
  Description-Content-Type: text/markdown
10
11
  Requires-Dist: click>=8.0.0
11
12
  Requires-Dist: httpx
12
13
  Requires-Dist: loguru
14
+ Dynamic: author
15
+ Dynamic: home-page
16
+ Dynamic: requires-python
13
17
 
14
18
  # 项目说明
15
19
 
@@ -2,7 +2,6 @@ import os
2
2
  import sys
3
3
 
4
4
  msg = sys.argv[1] if len(sys.argv) == 2 else "Auto Submit"
5
- msg = sys.argv[1] if len(sys.argv) == 2 else "更新爬虫示例(接收爬虫数据)"
6
5
 
7
6
  cmd1 = "git add ."
8
7
  cmd2 = 'git commit -m "{}"'.format(msg)
@@ -1,15 +1,19 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: coocan
3
- Version: 0.5.3
4
- Summary: Air Spider Framework
3
+ Version: 0.5.3.1
4
+ Summary: Air Async Spider Framework
5
5
  Home-page: https://github.com/markadc/coocan
6
6
  Author: wauo
7
- Author-email: markadc@126.com
7
+ Author-email: wauo <markadc@126.com>
8
+ Project-URL: Homepage, https://github.com/markadc/coocan
8
9
  Requires-Python: >=3.10
9
10
  Description-Content-Type: text/markdown
10
11
  Requires-Dist: click>=8.0.0
11
12
  Requires-Dist: httpx
12
13
  Requires-Dist: loguru
14
+ Dynamic: author
15
+ Dynamic: home-page
16
+ Dynamic: requires-python
13
17
 
14
18
  # 项目说明
15
19
 
@@ -1,4 +1,5 @@
1
1
  README.md
2
+ pyproject.toml
2
3
  setup.py
3
4
  coocan/__init__.py
4
5
  coocan/gen.py
@@ -0,0 +1,28 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "coocan"
7
+ version = "0.5.3.1"
8
+ authors = [
9
+ { name = "wauo", email = "markadc@126.com" }
10
+ ]
11
+ description = "Air Async Spider Framework"
12
+ readme = "README.md"
13
+ requires-python = ">=3.10"
14
+ dependencies = [
15
+ "click>=8.0.0",
16
+ "httpx",
17
+ "loguru"
18
+ ]
19
+ urls = { Homepage = "https://github.com/markadc/coocan" }
20
+
21
+ [project.scripts]
22
+ coocan = "coocan.cmd.cli:main"
23
+
24
+ [tool.setuptools]
25
+ include-package-data = true
26
+
27
+ [tool.setuptools.package-data]
28
+ coocan = ["templates/*"]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes