kakuyomub 0.0.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.
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.1
2
+ Name: kakuyomub
3
+ Version: 0.0.1
4
+ Summary: Convert kakuyomu articles to one epub file
5
+ Home-page: https://github.com/XHLin-gamer/kakuyomub
6
+ Author: XHLin-gamer
7
+ Author-email: earllin@shu.edu.cn
8
+ License: MIT Licence
9
+ Keywords: kakuyomu,epub
10
+ Platform: any
11
+ Requires-Dist: grequests
12
+ Requires-Dist: loguru
13
+ Requires-Dist: bs4
14
+ Requires-Dist: jinja2
15
+ Requires-Dist: requests
16
+ Requires-Dist: ebooklib
17
+
18
+ Convert kakuyomu articles to one epub file
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.1
2
+ Name: kakuyomub
3
+ Version: 0.0.1
4
+ Summary: Convert kakuyomu articles to one epub file
5
+ Home-page: https://github.com/XHLin-gamer/kakuyomub
6
+ Author: XHLin-gamer
7
+ Author-email: earllin@shu.edu.cn
8
+ License: MIT Licence
9
+ Keywords: kakuyomu,epub
10
+ Platform: any
11
+ Requires-Dist: grequests
12
+ Requires-Dist: loguru
13
+ Requires-Dist: bs4
14
+ Requires-Dist: jinja2
15
+ Requires-Dist: requests
16
+ Requires-Dist: ebooklib
17
+
18
+ Convert kakuyomu articles to one epub file
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ kakuyomub.egg-info/PKG-INFO
3
+ kakuyomub.egg-info/SOURCES.txt
4
+ kakuyomub.egg-info/dependency_links.txt
5
+ kakuyomub.egg-info/requires.txt
6
+ kakuyomub.egg-info/top_level.txt
@@ -0,0 +1,6 @@
1
+ grequests
2
+ loguru
3
+ bs4
4
+ jinja2
5
+ requests
6
+ ebooklib
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,26 @@
1
+ from setuptools import setup, find_packages #这个包没有的可以pip一下
2
+
3
+ setup(
4
+ name = "kakuyomub", #这里是pip项目发布的名称
5
+ version = "0.0.1", #版本号,数值大的会优先被pip
6
+ keywords = ("kakuyomu", "epub"),
7
+ description = "Convert kakuyomu articles to one epub file",
8
+ long_description = "Convert kakuyomu articles to one epub file",
9
+ license = "MIT Licence",
10
+
11
+ url = "https://github.com/XHLin-gamer/kakuyomub", #项目相关文件地址,一般是github
12
+ author = "XHLin-gamer",
13
+ author_email = "earllin@shu.edu.cn",
14
+
15
+ packages = find_packages(),
16
+ include_package_data = True,
17
+ platforms = "any",
18
+ install_requires = [
19
+ 'grequests',
20
+ 'loguru',
21
+ 'bs4',
22
+ 'jinja2',
23
+ 'requests',
24
+ 'ebooklib'
25
+ ] #这个项目需要的第三方库
26
+ )