ErisPulse 2.3.5.dev2__tar.gz → 2.3.6__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.
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/LICENSE +1 -17
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/PKG-INFO +138 -111
- erispulse-2.3.6/README.md +173 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/pyproject.toml +37 -11
- erispulse-2.3.6/src/ErisPulse/CLI/commands/run.py +252 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/commands/run.pyi +41 -12
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/console.py +0 -5
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Event/wrapper.py +42 -7
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Event/wrapper.pyi +21 -5
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/__init__.py +6 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/__init__.pyi +6 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/adapter.py +118 -4
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/adapter.pyi +35 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/config.py +65 -1
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/config.pyi +6 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/logger.py +45 -1
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/logger.pyi +34 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/module.py +1 -1
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/router.py +103 -40
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/router.pyi +4 -2
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/storage.py +15 -17
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/__init__.py +6 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/__init__.pyi +1 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/loaders/__init__.py +0 -2
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/loaders/__init__.pyi +0 -1
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/loaders/adapter.py +17 -12
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/loaders/adapter.pyi +2 -1
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/loaders/module.py +16 -12
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/loaders/module.pyi +2 -1
- erispulse-2.3.6/src/ErisPulse/runtime/cleanup.py +202 -0
- erispulse-2.3.6/src/ErisPulse/runtime/cleanup.pyi +76 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/sdk.py +288 -68
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/sdk.pyi +2 -1
- erispulse-2.3.5.dev2/README.md +0 -138
- erispulse-2.3.5.dev2/src/ErisPulse/CLI/commands/run.py +0 -206
- erispulse-2.3.5.dev2/src/ErisPulse/loaders/initializer.py +0 -150
- erispulse-2.3.5.dev2/src/ErisPulse/loaders/initializer.pyi +0 -60
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/.gitignore +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/__init__.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/__init__.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/base.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/base.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/cli.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/cli.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/commands/__init__.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/commands/__init__.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/commands/init.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/commands/init.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/commands/install.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/commands/install.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/commands/list.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/commands/list.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/commands/list_remote.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/commands/list_remote.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/commands/self_update.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/commands/self_update.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/commands/uninstall.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/commands/uninstall.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/commands/upgrade.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/commands/upgrade.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/console.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/registry.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/registry.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/utils/__init__.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/utils/__init__.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/utils/package_manager.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/CLI/utils/package_manager.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Bases/__init__.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Bases/__init__.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Bases/adapter.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Bases/adapter.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Bases/manager.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Bases/manager.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Bases/module.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Bases/module.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Event/__init__.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Event/__init__.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Event/base.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Event/base.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Event/command.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Event/command.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Event/message.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Event/message.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Event/meta.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Event/meta.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Event/notice.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Event/notice.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Event/request.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/Event/request.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/lifecycle.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/lifecycle.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/module.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/Core/storage.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/__main__.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/__main__.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/finders/__init__.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/finders/__init__.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/finders/adapter.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/finders/adapter.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/finders/bases/__init__.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/finders/bases/__init__.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/finders/bases/finder.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/finders/bases/finder.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/finders/cli.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/finders/cli.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/finders/module.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/finders/module.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/loaders/bases/__init__.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/loaders/bases/__init__.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/loaders/bases/loader.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/loaders/bases/loader.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/loaders/strategy.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/loaders/strategy.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/runtime/__init__.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/runtime/__init__.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/runtime/exceptions.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/runtime/exceptions.pyi +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/runtime/frame_config.py +0 -0
- {erispulse-2.3.5.dev2 → erispulse-2.3.6}/src/ErisPulse/runtime/frame_config.pyi +0 -0
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2025 ErisPulse
|
|
4
|
-
|
|
5
|
-
Portions of this software are based on https://github.com/runoneall/sdkFrame.
|
|
3
|
+
Copyright (c) 2025-2026 ErisPulse
|
|
6
4
|
|
|
7
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -21,17 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
21
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
22
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
23
21
|
SOFTWARE.
|
|
24
|
-
|
|
25
|
-
This SDK's core adapter standardization layer strictly follows OneBot12 specifications (https://12.onebot.dev/) for:
|
|
26
|
-
- Event data normalization
|
|
27
|
-
- API request/response formats
|
|
28
|
-
- Message segment definitions
|
|
29
|
-
- Metadata definitions
|
|
30
|
-
|
|
31
|
-
This ensures consistent behavior and interoperability across all adapter implementations.
|
|
32
|
-
|
|
33
|
-
We extend our gratitude to all developers and authors who contribute to the open-source community.
|
|
34
|
-
|
|
35
|
-
Please respect the efforts of every open-source author. By using, modifying, or distributing this software, you commit to strictly adhering to the relevant license terms and preserving all original copyright notices.
|
|
36
|
-
|
|
37
|
-
The core of the open-source spirit lies in sharing, collaboration, and respect. Through this project, we hope to carry forward this spirit and contribute to the development of the open-source community.
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ErisPulse
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.6
|
|
4
4
|
Summary: ErisPulse 是一个模块化、可扩展的异步 Python SDK 框架,主要用于构建高效、可维护的机器人应用程序。
|
|
5
5
|
Author-email: "艾莉丝·格雷拉特(WSu2059)" <wsu2059@qq.com>
|
|
6
|
+
Maintainer-email: "艾莉丝·格雷拉特(WSu2059)" <wsu2059@qq.com>
|
|
6
7
|
License: MIT License
|
|
7
8
|
|
|
8
|
-
Copyright (c) 2025 ErisPulse
|
|
9
|
-
|
|
10
|
-
Portions of this software are based on https://github.com/runoneall/sdkFrame.
|
|
9
|
+
Copyright (c) 2025-2026 ErisPulse
|
|
11
10
|
|
|
12
11
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
13
12
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -26,22 +25,10 @@ License: MIT License
|
|
|
26
25
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
27
26
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
28
27
|
SOFTWARE.
|
|
29
|
-
|
|
30
|
-
This SDK's core adapter standardization layer strictly follows OneBot12 specifications (https://12.onebot.dev/) for:
|
|
31
|
-
- Event data normalization
|
|
32
|
-
- API request/response formats
|
|
33
|
-
- Message segment definitions
|
|
34
|
-
- Metadata definitions
|
|
35
|
-
|
|
36
|
-
This ensures consistent behavior and interoperability across all adapter implementations.
|
|
37
|
-
|
|
38
|
-
We extend our gratitude to all developers and authors who contribute to the open-source community.
|
|
39
|
-
|
|
40
|
-
Please respect the efforts of every open-source author. By using, modifying, or distributing this software, you commit to strictly adhering to the relevant license terms and preserving all original copyright notices.
|
|
41
|
-
|
|
42
|
-
The core of the open-source spirit lies in sharing, collaboration, and respect. Through this project, we hope to carry forward this spirit and contribute to the development of the open-source community.
|
|
43
28
|
License-File: LICENSE
|
|
44
|
-
|
|
29
|
+
Keywords: async,asyncio,bot,extensible,framework,modular,onebot,robot,sdk,telegram
|
|
30
|
+
Classifier: Development Status :: 4 - Beta
|
|
31
|
+
Classifier: Framework :: AsyncIO
|
|
45
32
|
Classifier: Intended Audience :: Developers
|
|
46
33
|
Classifier: License :: OSI Approved :: MIT License
|
|
47
34
|
Classifier: Operating System :: OS Independent
|
|
@@ -51,63 +38,156 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
51
38
|
Classifier: Programming Language :: Python :: 3.11
|
|
52
39
|
Classifier: Programming Language :: Python :: 3.12
|
|
53
40
|
Classifier: Programming Language :: Python :: 3.13
|
|
41
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
54
42
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
43
|
+
Classifier: Typing :: Typed
|
|
55
44
|
Requires-Python: >=3.10
|
|
56
|
-
Requires-Dist: aiohttp
|
|
57
|
-
Requires-Dist: colorama
|
|
45
|
+
Requires-Dist: aiohttp>=3.9.0
|
|
58
46
|
Requires-Dist: fastapi>=0.116.1
|
|
59
47
|
Requires-Dist: hypercorn>=0.14.0
|
|
60
48
|
Requires-Dist: packaging>=25.0
|
|
61
|
-
Requires-Dist: pip
|
|
62
|
-
Requires-Dist:
|
|
63
|
-
Requires-Dist:
|
|
64
|
-
Requires-Dist:
|
|
65
|
-
|
|
66
|
-
Requires-Dist:
|
|
49
|
+
Requires-Dist: pip>=23.0
|
|
50
|
+
Requires-Dist: rich>=13.0.0
|
|
51
|
+
Requires-Dist: toml>=0.10.2
|
|
52
|
+
Requires-Dist: watchdog>=4.0.0
|
|
53
|
+
Provides-Extra: test
|
|
54
|
+
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'test'
|
|
55
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == 'test'
|
|
56
|
+
Requires-Dist: pytest-mock>=3.10.0; extra == 'test'
|
|
57
|
+
Requires-Dist: pytest-xdist>=3.0.0; extra == 'test'
|
|
58
|
+
Requires-Dist: pytest>=7.0.0; extra == 'test'
|
|
67
59
|
Description-Content-Type: text/markdown
|
|
68
60
|
|
|
69
|
-
|
|
61
|
+
<table>
|
|
62
|
+
<tr>
|
|
63
|
+
<td width="35%" valign="middle" align="center">
|
|
64
|
+
<img src=".github/assets/erispulse_logo_1024.png" width="280" alt="ErisPulse" />
|
|
65
|
+
</td>
|
|
66
|
+
<td width="65%" valign="middle">
|
|
67
|
+
|
|
68
|
+
# ErisPulse
|
|
70
69
|
|
|
71
|
-
|
|
70
|
+
**事件驱动的多平台机器人开发框架**
|
|
72
71
|
|
|
73
72
|
[](https://pypi.org/project/ErisPulse/)
|
|
74
73
|
[](https://pypi.org/project/ErisPulse/)
|
|
75
74
|
[](https://github.com/astral-sh/ruff)
|
|
76
75
|
[](https://socket.dev/pypi/package/ErisPulse)
|
|
77
76
|
|
|
78
|
-
|
|
77
|
+
</td>
|
|
78
|
+
</tr>
|
|
79
|
+
</table>
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## 简介
|
|
84
|
+
|
|
85
|
+
ErisPulse 是一个基于 Python 的事件驱动型多平台机器人开发框架。通过统一的 OneBot12 标准接口,您可以一次编写代码,同时在云湖、Telegram、OneBot 等多个平台部署相同功能的机器人。框架提供灵活的模块(`插件`)系统、热重载支持和完整的开发者工具链,适用于从简单聊天机器人到复杂自动化系统的各种场景。
|
|
86
|
+
|
|
87
|
+
## 核心特性
|
|
88
|
+
|
|
89
|
+
- **事件驱动架构** - 基于 OneBot12 标准的清晰事件模型
|
|
90
|
+
- **跨平台兼容** - 插件模块编写一次即可在所有平台使用
|
|
91
|
+
- **模块化设计** - 灵活的插件系统,易于扩展和集成
|
|
92
|
+
- **热重载支持** - 开发时无需重启即可重新加载代码
|
|
93
|
+
- **完整工具链** - 提供 CLI 工具、包管理和自动化脚本
|
|
94
|
+
|
|
95
|
+
## 快速开始
|
|
96
|
+
|
|
97
|
+
### 安装
|
|
98
|
+
|
|
99
|
+
```bash
|
|
100
|
+
pip install ErisPulse
|
|
101
|
+
|
|
102
|
+
# 国内镜像
|
|
103
|
+
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple ErisPulse
|
|
104
|
+
|
|
105
|
+
# 使用 `uv` 安装
|
|
106
|
+
uv install ErisPulse
|
|
107
|
+
```
|
|
108
|
+
> 如果您的 Python 版本低于 3.10,可以使用一键安装脚本自动配置环境。详见 [安装脚本说明](scripts/install/)。
|
|
109
|
+
|
|
110
|
+
### 初始化项目
|
|
111
|
+
|
|
112
|
+
```bash
|
|
113
|
+
# 交互式初始化
|
|
114
|
+
epsdk init
|
|
115
|
+
|
|
116
|
+
# 快速初始化(指定项目名称)
|
|
117
|
+
epsdk init -q -n my_bot
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
### 创建第一个机器人
|
|
121
|
+
|
|
122
|
+
创建 `main.py` 文件:
|
|
123
|
+
|
|
124
|
+
<table>
|
|
125
|
+
<tr>
|
|
126
|
+
<td width="50%" valign="top">
|
|
127
|
+
|
|
128
|
+
**命令处理器**
|
|
79
129
|
|
|
80
130
|
```python
|
|
81
|
-
import asyncio
|
|
82
131
|
from ErisPulse import sdk
|
|
83
132
|
from ErisPulse.Core.Event import command
|
|
84
133
|
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
await event.reply("
|
|
134
|
+
@command("hello", help="发送问候消息")
|
|
135
|
+
async def hello_handler(event):
|
|
136
|
+
user_name = event.get_user_nickname() or "朋友"
|
|
137
|
+
await event.reply(f"你好,{user_name}!")
|
|
138
|
+
|
|
139
|
+
@command("ping", help="测试机器人是否在线")
|
|
140
|
+
async def ping_handler(event):
|
|
141
|
+
await event.reply("Pong!机器人运行正常。")
|
|
89
142
|
|
|
90
|
-
|
|
91
|
-
asyncio
|
|
143
|
+
if __name__ == "__main__":
|
|
144
|
+
import asyncio
|
|
145
|
+
asyncio.run(sdk.run(keep_running=True))
|
|
92
146
|
```
|
|
93
147
|
|
|
94
|
-
|
|
148
|
+
</td>
|
|
149
|
+
<td width="50%" valign="top">
|
|
150
|
+
|
|
151
|
+
**效果说明**
|
|
152
|
+
|
|
153
|
+
发送 `/hello`
|
|
154
|
+
|
|
155
|
+
机器人回复:`你好,{用户名}!`
|
|
156
|
+
|
|
157
|
+
---
|
|
95
158
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
159
|
+
发送 `/ping`
|
|
160
|
+
|
|
161
|
+
机器人回复:`Pong!机器人运行正常。`
|
|
162
|
+
|
|
163
|
+
---
|
|
164
|
+
|
|
165
|
+
**运行方式**
|
|
166
|
+
|
|
167
|
+
```bash
|
|
168
|
+
epsdk run main.py
|
|
169
|
+
# 或开发模式
|
|
170
|
+
epsdk run main.py --reload
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
</td>
|
|
174
|
+
</tr>
|
|
175
|
+
</table>
|
|
176
|
+
|
|
177
|
+
更多详细说明请参阅:
|
|
178
|
+
- [快速开始指南](docs/quick-start.md)
|
|
179
|
+
- [入门指南](docs/getting-started/)
|
|
100
180
|
|
|
101
181
|
## 应用场景
|
|
102
182
|
|
|
103
183
|
- **多平台机器人** - 在多个平台部署相同功能的机器人
|
|
104
|
-
- **聊天助手** -
|
|
184
|
+
- **聊天助手** - 接入 AI 聊天模块,实现娱乐和交互
|
|
105
185
|
- **自动化工具** - 消息通知、任务管理、数据收集
|
|
106
186
|
- **消息转发** - 跨平台消息同步和转发
|
|
107
|
-
> 你还能做更多更多,多到没有想象的边界 www
|
|
108
187
|
|
|
109
188
|
## 支持的适配器
|
|
110
|
-
|
|
189
|
+
|
|
190
|
+
欢迎您贡献适配器!
|
|
111
191
|
|
|
112
192
|
- [云湖](https://github.com/ErisPulse/ErisPulse-YunhuAdapter) - 企业级即时通讯平台(机器人账户)
|
|
113
193
|
- [云湖用户](https://github.com/wsu2059q/ErisPulse-YunhuUserAdapter) - 基于云湖用户账户的适配器
|
|
@@ -117,7 +197,7 @@ asyncio.run(sdk.run(keep_running=True))
|
|
|
117
197
|
- [邮件](https://github.com/ErisPulse/ErisPulse-EmailAdapter) - 邮件收发处理
|
|
118
198
|
- [沙箱](https://github.com/ErisPulse/ErisPulse-SandboxAdapter) - 网页调试界面,无需接入实际平台
|
|
119
199
|
|
|
120
|
-
|
|
200
|
+
查看 [适配器详情介绍](docs/platform-guide/README.md)
|
|
121
201
|
|
|
122
202
|
## 文档资源
|
|
123
203
|
|
|
@@ -126,81 +206,28 @@ asyncio.run(sdk.run(keep_running=True))
|
|
|
126
206
|
| 文档 | [erisdev.com](https://www.erisdev.com/#docs) | [Cloudflare](https://erispulse.pages.dev/#docs) • [GitHub](https://erispulse.github.io/#docs) • [Netlify](https://erispulse.netlify.app/#docs) |
|
|
127
207
|
| 模块市场 | [erisdev.com](https://www.erisdev.com/#market) | [Cloudflare](https://erispulse.pages.dev/#market) • [GitHub](https://erispulse.github.io/#market) • [Netlify](https://erispulse.netlify.app/#market) |
|
|
128
208
|
|
|
129
|
-
## 快速开始
|
|
130
|
-
|
|
131
|
-
### 一键安装脚本
|
|
132
|
-
|
|
133
|
-
#### Windows (PowerShell):
|
|
134
|
-
|
|
135
|
-
```powershell
|
|
136
|
-
irm https://get.erisdev.com/install.ps1 -OutFile install.ps1; powershell -ExecutionPolicy Bypass -File install.ps1
|
|
137
|
-
```
|
|
138
|
-
|
|
139
|
-
#### macOS/Linux:
|
|
140
|
-
|
|
141
|
-
```bash
|
|
142
|
-
curl -sSL https://get.erisdev.com/install.sh | tee install.sh >/dev/null && chmod +x install.sh && ./install.sh
|
|
143
|
-
```
|
|
144
|
-
|
|
145
|
-
## 开发与测试
|
|
146
|
-
|
|
147
|
-
### 克隆项目
|
|
148
|
-
|
|
149
|
-
```bash
|
|
150
|
-
git clone -b Develop/v2 https://github.com/ErisPulse/ErisPulse.git
|
|
151
|
-
cd ErisPulse
|
|
152
|
-
```
|
|
153
|
-
|
|
154
|
-
### 环境搭建
|
|
155
|
-
|
|
156
|
-
使用 `uv` 同步项目环境:
|
|
157
|
-
|
|
158
|
-
```bash
|
|
159
|
-
uv sync
|
|
160
|
-
# 激活虚拟环境: source .venv/bin/activate (macOS/Linux) 或 .venv\Scripts\activate (Windows)
|
|
161
|
-
```
|
|
162
|
-
|
|
163
|
-
> 提示:ErisPulse 使用 Python 3.13 开发,兼容 Python 3.10+
|
|
164
|
-
|
|
165
|
-
**快速开始**:[快速开始指南](docs-new/quick-start.md) | [入门指南](docs-new/getting-started/)
|
|
166
|
-
|
|
167
|
-
## 项目结构
|
|
168
|
-
|
|
169
|
-
```
|
|
170
|
-
ErisPulse/
|
|
171
|
-
├── src/
|
|
172
|
-
│ └── ErisPulse/ # 核心源代码
|
|
173
|
-
│ ├── Core/ # 核心模块
|
|
174
|
-
│ │ ├── Bases/ # 基础类定义
|
|
175
|
-
│ │ ├── Event/ # 事件系统
|
|
176
|
-
│ │ └── ... # 其他核心组件
|
|
177
|
-
│ └── __init__.py # SDK入口点
|
|
178
|
-
├── examples/ # 示例代码
|
|
179
|
-
├── devs/ # 开发工具
|
|
180
|
-
├── docs/ # 文档
|
|
181
|
-
├── tests/ # 测试代码
|
|
182
|
-
├── scripts/ # 脚本文件
|
|
183
|
-
└── config.toml # 默认配置文件
|
|
184
|
-
```
|
|
185
|
-
|
|
186
209
|
## 贡献指南
|
|
187
210
|
|
|
188
|
-
|
|
211
|
+
我们欢迎各种形式的贡献,包括但不限于:
|
|
189
212
|
|
|
190
|
-
1.
|
|
191
|
-
在 [GitHub Issues](https://github.com/ErisPulse/ErisPulse/issues) 提交bug报告
|
|
213
|
+
1. **报告问题**
|
|
214
|
+
在 [GitHub Issues](https://github.com/ErisPulse/ErisPulse/issues) 提交 bug 报告
|
|
192
215
|
|
|
193
|
-
2.
|
|
216
|
+
2. **功能请求**
|
|
194
217
|
通过 [社区讨论](https://github.com/ErisPulse/ErisPulse/discussions) 提出新想法
|
|
195
218
|
|
|
196
|
-
3.
|
|
197
|
-
提交 Pull Request 前请阅读我们的 [代码风格](docs/styleguide/
|
|
219
|
+
3. **代码贡献**
|
|
220
|
+
提交 Pull Request 前请阅读我们的 [代码风格](docs/styleguide/) 以及 [贡献指南](CONTRIBUTING.md)
|
|
198
221
|
|
|
199
|
-
4.
|
|
222
|
+
4. **文档改进**
|
|
200
223
|
帮助完善文档和示例代码
|
|
201
224
|
|
|
202
225
|
[加入社区讨论](https://github.com/ErisPulse/ErisPulse/discussions)
|
|
203
226
|
|
|
204
227
|
---
|
|
205
228
|
|
|
206
|
-
|
|
229
|
+
## 致谢
|
|
230
|
+
|
|
231
|
+
- 本项目部分代码基于 [sdkFrame](https://github.com/runoneall/sdkFrame)
|
|
232
|
+
- 核心适配器标准化层基于 [OneBot12 规范](https://12.onebot.dev/)
|
|
233
|
+
- 感谢所有为开源社区做出贡献的开发者和作者
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
<table>
|
|
2
|
+
<tr>
|
|
3
|
+
<td width="35%" valign="middle" align="center">
|
|
4
|
+
<img src=".github/assets/erispulse_logo_1024.png" width="280" alt="ErisPulse" />
|
|
5
|
+
</td>
|
|
6
|
+
<td width="65%" valign="middle">
|
|
7
|
+
|
|
8
|
+
# ErisPulse
|
|
9
|
+
|
|
10
|
+
**事件驱动的多平台机器人开发框架**
|
|
11
|
+
|
|
12
|
+
[](https://pypi.org/project/ErisPulse/)
|
|
13
|
+
[](https://pypi.org/project/ErisPulse/)
|
|
14
|
+
[](https://github.com/astral-sh/ruff)
|
|
15
|
+
[](https://socket.dev/pypi/package/ErisPulse)
|
|
16
|
+
|
|
17
|
+
</td>
|
|
18
|
+
</tr>
|
|
19
|
+
</table>
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## 简介
|
|
24
|
+
|
|
25
|
+
ErisPulse 是一个基于 Python 的事件驱动型多平台机器人开发框架。通过统一的 OneBot12 标准接口,您可以一次编写代码,同时在云湖、Telegram、OneBot 等多个平台部署相同功能的机器人。框架提供灵活的模块(`插件`)系统、热重载支持和完整的开发者工具链,适用于从简单聊天机器人到复杂自动化系统的各种场景。
|
|
26
|
+
|
|
27
|
+
## 核心特性
|
|
28
|
+
|
|
29
|
+
- **事件驱动架构** - 基于 OneBot12 标准的清晰事件模型
|
|
30
|
+
- **跨平台兼容** - 插件模块编写一次即可在所有平台使用
|
|
31
|
+
- **模块化设计** - 灵活的插件系统,易于扩展和集成
|
|
32
|
+
- **热重载支持** - 开发时无需重启即可重新加载代码
|
|
33
|
+
- **完整工具链** - 提供 CLI 工具、包管理和自动化脚本
|
|
34
|
+
|
|
35
|
+
## 快速开始
|
|
36
|
+
|
|
37
|
+
### 安装
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
pip install ErisPulse
|
|
41
|
+
|
|
42
|
+
# 国内镜像
|
|
43
|
+
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple ErisPulse
|
|
44
|
+
|
|
45
|
+
# 使用 `uv` 安装
|
|
46
|
+
uv install ErisPulse
|
|
47
|
+
```
|
|
48
|
+
> 如果您的 Python 版本低于 3.10,可以使用一键安装脚本自动配置环境。详见 [安装脚本说明](scripts/install/)。
|
|
49
|
+
|
|
50
|
+
### 初始化项目
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
# 交互式初始化
|
|
54
|
+
epsdk init
|
|
55
|
+
|
|
56
|
+
# 快速初始化(指定项目名称)
|
|
57
|
+
epsdk init -q -n my_bot
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
### 创建第一个机器人
|
|
61
|
+
|
|
62
|
+
创建 `main.py` 文件:
|
|
63
|
+
|
|
64
|
+
<table>
|
|
65
|
+
<tr>
|
|
66
|
+
<td width="50%" valign="top">
|
|
67
|
+
|
|
68
|
+
**命令处理器**
|
|
69
|
+
|
|
70
|
+
```python
|
|
71
|
+
from ErisPulse import sdk
|
|
72
|
+
from ErisPulse.Core.Event import command
|
|
73
|
+
|
|
74
|
+
@command("hello", help="发送问候消息")
|
|
75
|
+
async def hello_handler(event):
|
|
76
|
+
user_name = event.get_user_nickname() or "朋友"
|
|
77
|
+
await event.reply(f"你好,{user_name}!")
|
|
78
|
+
|
|
79
|
+
@command("ping", help="测试机器人是否在线")
|
|
80
|
+
async def ping_handler(event):
|
|
81
|
+
await event.reply("Pong!机器人运行正常。")
|
|
82
|
+
|
|
83
|
+
if __name__ == "__main__":
|
|
84
|
+
import asyncio
|
|
85
|
+
asyncio.run(sdk.run(keep_running=True))
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
</td>
|
|
89
|
+
<td width="50%" valign="top">
|
|
90
|
+
|
|
91
|
+
**效果说明**
|
|
92
|
+
|
|
93
|
+
发送 `/hello`
|
|
94
|
+
|
|
95
|
+
机器人回复:`你好,{用户名}!`
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
发送 `/ping`
|
|
100
|
+
|
|
101
|
+
机器人回复:`Pong!机器人运行正常。`
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
**运行方式**
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
epsdk run main.py
|
|
109
|
+
# 或开发模式
|
|
110
|
+
epsdk run main.py --reload
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
</td>
|
|
114
|
+
</tr>
|
|
115
|
+
</table>
|
|
116
|
+
|
|
117
|
+
更多详细说明请参阅:
|
|
118
|
+
- [快速开始指南](docs/quick-start.md)
|
|
119
|
+
- [入门指南](docs/getting-started/)
|
|
120
|
+
|
|
121
|
+
## 应用场景
|
|
122
|
+
|
|
123
|
+
- **多平台机器人** - 在多个平台部署相同功能的机器人
|
|
124
|
+
- **聊天助手** - 接入 AI 聊天模块,实现娱乐和交互
|
|
125
|
+
- **自动化工具** - 消息通知、任务管理、数据收集
|
|
126
|
+
- **消息转发** - 跨平台消息同步和转发
|
|
127
|
+
|
|
128
|
+
## 支持的适配器
|
|
129
|
+
|
|
130
|
+
欢迎您贡献适配器!
|
|
131
|
+
|
|
132
|
+
- [云湖](https://github.com/ErisPulse/ErisPulse-YunhuAdapter) - 企业级即时通讯平台(机器人账户)
|
|
133
|
+
- [云湖用户](https://github.com/wsu2059q/ErisPulse-YunhuUserAdapter) - 基于云湖用户账户的适配器
|
|
134
|
+
- [Telegram](https://github.com/ErisPulse/ErisPulse-TelegramAdapter) - 全球性即时通讯软件
|
|
135
|
+
- [OneBot11](https://github.com/ErisPulse/ErisPulse-OneBot11Adapter) - 通用机器人接口标准
|
|
136
|
+
- [OneBot12](https://github.com/ErisPulse/ErisPulse-OneBot12Adapter) - OneBot12 标准
|
|
137
|
+
- [邮件](https://github.com/ErisPulse/ErisPulse-EmailAdapter) - 邮件收发处理
|
|
138
|
+
- [沙箱](https://github.com/ErisPulse/ErisPulse-SandboxAdapter) - 网页调试界面,无需接入实际平台
|
|
139
|
+
|
|
140
|
+
查看 [适配器详情介绍](docs/platform-guide/README.md)
|
|
141
|
+
|
|
142
|
+
## 文档资源
|
|
143
|
+
|
|
144
|
+
| 平台 | 主站点 | 备用站点 |
|
|
145
|
+
|------|--------|---------|
|
|
146
|
+
| 文档 | [erisdev.com](https://www.erisdev.com/#docs) | [Cloudflare](https://erispulse.pages.dev/#docs) • [GitHub](https://erispulse.github.io/#docs) • [Netlify](https://erispulse.netlify.app/#docs) |
|
|
147
|
+
| 模块市场 | [erisdev.com](https://www.erisdev.com/#market) | [Cloudflare](https://erispulse.pages.dev/#market) • [GitHub](https://erispulse.github.io/#market) • [Netlify](https://erispulse.netlify.app/#market) |
|
|
148
|
+
|
|
149
|
+
## 贡献指南
|
|
150
|
+
|
|
151
|
+
我们欢迎各种形式的贡献,包括但不限于:
|
|
152
|
+
|
|
153
|
+
1. **报告问题**
|
|
154
|
+
在 [GitHub Issues](https://github.com/ErisPulse/ErisPulse/issues) 提交 bug 报告
|
|
155
|
+
|
|
156
|
+
2. **功能请求**
|
|
157
|
+
通过 [社区讨论](https://github.com/ErisPulse/ErisPulse/discussions) 提出新想法
|
|
158
|
+
|
|
159
|
+
3. **代码贡献**
|
|
160
|
+
提交 Pull Request 前请阅读我们的 [代码风格](docs/styleguide/) 以及 [贡献指南](CONTRIBUTING.md)
|
|
161
|
+
|
|
162
|
+
4. **文档改进**
|
|
163
|
+
帮助完善文档和示例代码
|
|
164
|
+
|
|
165
|
+
[加入社区讨论](https://github.com/ErisPulse/ErisPulse/discussions)
|
|
166
|
+
|
|
167
|
+
---
|
|
168
|
+
|
|
169
|
+
## 致谢
|
|
170
|
+
|
|
171
|
+
- 本项目部分代码基于 [sdkFrame](https://github.com/runoneall/sdkFrame)
|
|
172
|
+
- 核心适配器标准化层基于 [OneBot12 规范](https://12.onebot.dev/)
|
|
173
|
+
- 感谢所有为开源社区做出贡献的开发者和作者
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "ErisPulse"
|
|
7
|
-
version = "2.3.
|
|
7
|
+
version = "2.3.6"
|
|
8
8
|
description = "ErisPulse 是一个模块化、可扩展的异步 Python SDK 框架,主要用于构建高效、可维护的机器人应用程序。"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -14,8 +14,25 @@ authors = [
|
|
|
14
14
|
{ name = "艾莉丝·格雷拉特(WSu2059)", email = "wsu2059@qq.com" }
|
|
15
15
|
]
|
|
16
16
|
|
|
17
|
+
maintainers = [
|
|
18
|
+
{ name = "艾莉丝·格雷拉特(WSu2059)", email = "wsu2059@qq.com" }
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
keywords = [
|
|
22
|
+
"async",
|
|
23
|
+
"bot",
|
|
24
|
+
"sdk",
|
|
25
|
+
"framework",
|
|
26
|
+
"robot",
|
|
27
|
+
"onebot",
|
|
28
|
+
"telegram",
|
|
29
|
+
"extensible",
|
|
30
|
+
"modular",
|
|
31
|
+
"asyncio"
|
|
32
|
+
]
|
|
33
|
+
|
|
17
34
|
classifiers = [
|
|
18
|
-
"Development Status ::
|
|
35
|
+
"Development Status :: 4 - Beta",
|
|
19
36
|
"Intended Audience :: Developers",
|
|
20
37
|
"License :: OSI Approved :: MIT License",
|
|
21
38
|
"Programming Language :: Python :: 3",
|
|
@@ -25,23 +42,32 @@ classifiers = [
|
|
|
25
42
|
"Programming Language :: Python :: 3.13",
|
|
26
43
|
"Programming Language :: Python :: 3 :: Only",
|
|
27
44
|
"Operating System :: OS Independent",
|
|
28
|
-
"Topic :: Software Development :: Libraries :: Python Modules"
|
|
45
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
46
|
+
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
|
47
|
+
"Framework :: AsyncIO",
|
|
48
|
+
"Typing :: Typed"
|
|
29
49
|
]
|
|
30
50
|
|
|
31
51
|
dependencies = [
|
|
32
|
-
"pip", # 显式声明,防止部分情况下cli报错
|
|
33
|
-
"rich",
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"toml",
|
|
52
|
+
"pip>=23.0", # 显式声明,防止部分情况下cli报错 | 绝对!!!不要删除这个依赖项
|
|
53
|
+
"rich>=13.0.0",
|
|
54
|
+
"aiohttp>=3.9.0",
|
|
55
|
+
"watchdog>=4.0.0",
|
|
56
|
+
"toml>=0.10.2",
|
|
38
57
|
"fastapi>=0.116.1",
|
|
39
58
|
"hypercorn>=0.14.0",
|
|
40
|
-
"pydantic>=2.10.6",
|
|
41
|
-
"python-multipart>=0.0.20",
|
|
42
59
|
"packaging>=25.0",
|
|
43
60
|
]
|
|
44
61
|
|
|
62
|
+
[project.optional-dependencies]
|
|
63
|
+
test = [
|
|
64
|
+
"pytest>=7.0.0",
|
|
65
|
+
"pytest-cov>=4.0.0",
|
|
66
|
+
"pytest-asyncio>=0.21.0",
|
|
67
|
+
"pytest-xdist>=3.0.0",
|
|
68
|
+
"pytest-mock>=3.10.0",
|
|
69
|
+
]
|
|
70
|
+
|
|
45
71
|
[project.scripts]
|
|
46
72
|
ep-init = "ErisPulse.__init__:init_sync"
|
|
47
73
|
epsdk = "ErisPulse.__main__:main"
|