nonebot-plugin-latex 0.0.2.2__tar.gz → 0.0.2.3__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (16) hide show
  1. {nonebot_plugin_latex-0.0.2.2 → nonebot_plugin_latex-0.0.2.3}/PKG-INFO +8 -8
  2. {nonebot_plugin_latex-0.0.2.2 → nonebot_plugin_latex-0.0.2.3}/README.md +5 -0
  3. {nonebot_plugin_latex-0.0.2.2 → nonebot_plugin_latex-0.0.2.3}/nonebot_plugin_latex/__init__.py +1 -1
  4. {nonebot_plugin_latex-0.0.2.2 → nonebot_plugin_latex-0.0.2.3}/nonebot_plugin_latex.egg-info/PKG-INFO +8 -8
  5. nonebot_plugin_latex-0.0.2.3/nonebot_plugin_latex.egg-info/requires.txt +3 -0
  6. {nonebot_plugin_latex-0.0.2.2 → nonebot_plugin_latex-0.0.2.3}/pyproject.toml +3 -8
  7. nonebot_plugin_latex-0.0.2.2/nonebot_plugin_latex.egg-info/requires.txt +0 -8
  8. {nonebot_plugin_latex-0.0.2.2 → nonebot_plugin_latex-0.0.2.3}/LICENSE +0 -0
  9. {nonebot_plugin_latex-0.0.2.2 → nonebot_plugin_latex-0.0.2.3}/nonebot_plugin_latex/config.py +0 -0
  10. {nonebot_plugin_latex-0.0.2.2 → nonebot_plugin_latex-0.0.2.3}/nonebot_plugin_latex/converter.py +0 -0
  11. {nonebot_plugin_latex-0.0.2.2 → nonebot_plugin_latex-0.0.2.3}/nonebot_plugin_latex/data.py +0 -0
  12. {nonebot_plugin_latex-0.0.2.2 → nonebot_plugin_latex-0.0.2.3}/nonebot_plugin_latex/main.py +0 -0
  13. {nonebot_plugin_latex-0.0.2.2 → nonebot_plugin_latex-0.0.2.3}/nonebot_plugin_latex.egg-info/SOURCES.txt +0 -0
  14. {nonebot_plugin_latex-0.0.2.2 → nonebot_plugin_latex-0.0.2.3}/nonebot_plugin_latex.egg-info/dependency_links.txt +0 -0
  15. {nonebot_plugin_latex-0.0.2.2 → nonebot_plugin_latex-0.0.2.3}/nonebot_plugin_latex.egg-info/top_level.txt +0 -0
  16. {nonebot_plugin_latex-0.0.2.2 → nonebot_plugin_latex-0.0.2.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: nonebot-plugin-latex
3
- Version: 0.0.2.2
3
+ Version: 0.0.2.3
4
4
  Summary: 通过互联网公共服务渲染LaTeX公式
5
5
  Author-email: Eilles <EillesWan@outlook.com>
6
6
  License: 木兰宽松许可证, 第2版
@@ -136,14 +136,9 @@ Project-URL: Bug Tracker, https://github.com/EillesWan/nonebot-plugin-latex/issu
136
136
  Requires-Python: <4.0,>=3.9
137
137
  Description-Content-Type: text/markdown
138
138
  License-File: LICENSE
139
- Requires-Dist: playwright>=1.17.2
140
139
  Requires-Dist: nonebot2>=2.2.0
141
- Requires-Dist: jinja2>=3.0.3
142
- Requires-Dist: markdown>=3.3.6
143
- Requires-Dist: Pygments>=2.10.0
144
- Requires-Dist: python-markdown-math>=0.8
145
- Requires-Dist: pymdown-extensions>=9.1
146
- Requires-Dist: aiofiles>=0.8.0
140
+ Requires-Dist: httpx<0.28.0,>=0.27.0
141
+ Requires-Dist: nonebot-adapter-onebot>=2.4.3
147
142
 
148
143
  # nonebot-plugin-latex
149
144
 
@@ -168,3 +163,8 @@ latex_enable_as_application = true
168
163
  ```
169
164
 
170
165
  这样就可以使用 `latex` 命令进行渲染了,例如 `latex $E=mc^2$` 就会返回这个方程式的渲染图片。
166
+
167
+ ## 提交
168
+
169
+ 各位可以搭建自己的 LaTeX 在线渲染服务,或者直接本地渲染,如果提交到本仓库,在下不胜感激。\
170
+ 对于本地渲染服务,请不要使用 nonebot-plugin-htmlrender
@@ -21,3 +21,8 @@ latex_enable_as_application = true
21
21
  ```
22
22
 
23
23
  这样就可以使用 `latex` 命令进行渲染了,例如 `latex $E=mc^2$` 就会返回这个方程式的渲染图片。
24
+
25
+ ## 提交
26
+
27
+ 各位可以搭建自己的 LaTeX 在线渲染服务,或者直接本地渲染,如果提交到本仓库,在下不胜感激。\
28
+ 对于本地渲染服务,请不要使用 nonebot-plugin-htmlrender
@@ -19,7 +19,7 @@ from nonebot.plugin import PluginMetadata
19
19
  from .config import Config
20
20
  from .converter import converter
21
21
 
22
- __version__ = "0.0.2.2"
22
+ __version__ = "0.0.2.3"
23
23
 
24
24
  __author__ = "Eilles"
25
25
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: nonebot-plugin-latex
3
- Version: 0.0.2.2
3
+ Version: 0.0.2.3
4
4
  Summary: 通过互联网公共服务渲染LaTeX公式
5
5
  Author-email: Eilles <EillesWan@outlook.com>
6
6
  License: 木兰宽松许可证, 第2版
@@ -136,14 +136,9 @@ Project-URL: Bug Tracker, https://github.com/EillesWan/nonebot-plugin-latex/issu
136
136
  Requires-Python: <4.0,>=3.9
137
137
  Description-Content-Type: text/markdown
138
138
  License-File: LICENSE
139
- Requires-Dist: playwright>=1.17.2
140
139
  Requires-Dist: nonebot2>=2.2.0
141
- Requires-Dist: jinja2>=3.0.3
142
- Requires-Dist: markdown>=3.3.6
143
- Requires-Dist: Pygments>=2.10.0
144
- Requires-Dist: python-markdown-math>=0.8
145
- Requires-Dist: pymdown-extensions>=9.1
146
- Requires-Dist: aiofiles>=0.8.0
140
+ Requires-Dist: httpx<0.28.0,>=0.27.0
141
+ Requires-Dist: nonebot-adapter-onebot>=2.4.3
147
142
 
148
143
  # nonebot-plugin-latex
149
144
 
@@ -168,3 +163,8 @@ latex_enable_as_application = true
168
163
  ```
169
164
 
170
165
  这样就可以使用 `latex` 命令进行渲染了,例如 `latex $E=mc^2$` 就会返回这个方程式的渲染图片。
166
+
167
+ ## 提交
168
+
169
+ 各位可以搭建自己的 LaTeX 在线渲染服务,或者直接本地渲染,如果提交到本仓库,在下不胜感激。\
170
+ 对于本地渲染服务,请不要使用 nonebot-plugin-htmlrender
@@ -0,0 +1,3 @@
1
+ nonebot2>=2.2.0
2
+ httpx<0.28.0,>=0.27.0
3
+ nonebot-adapter-onebot>=2.4.3
@@ -1,17 +1,12 @@
1
1
  [project]
2
2
  name = "nonebot-plugin-latex"
3
- version = "0.0.2.2"
3
+ version = "0.0.2.3"
4
4
  description = "通过互联网公共服务渲染LaTeX公式"
5
5
  authors = [{ name = "Eilles", email = "EillesWan@outlook.com" }]
6
6
  dependencies = [
7
- "playwright>=1.17.2",
8
7
  "nonebot2>=2.2.0",
9
- "jinja2>=3.0.3",
10
- "markdown>=3.3.6",
11
- "Pygments>=2.10.0",
12
- "python-markdown-math>=0.8",
13
- "pymdown-extensions>=9.1",
14
- "aiofiles>=0.8.0",
8
+ "httpx>=0.27.0,<0.28.0",
9
+ "nonebot-adapter-onebot>=2.4.3",
15
10
  ]
16
11
  requires-python = ">=3.9,<4.0"
17
12
  readme = "README.md"
@@ -1,8 +0,0 @@
1
- playwright>=1.17.2
2
- nonebot2>=2.2.0
3
- jinja2>=3.0.3
4
- markdown>=3.3.6
5
- Pygments>=2.10.0
6
- python-markdown-math>=0.8
7
- pymdown-extensions>=9.1
8
- aiofiles>=0.8.0