Skip to content

Commit

Permalink
n
Browse files Browse the repository at this point in the history
  • Loading branch information
electrolyteJ committed Jun 12, 2024
1 parent 25f74fc commit 78ccb49
Show file tree
Hide file tree
Showing 18 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gen_web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: cp readme.md
run: cp README.md docs/index.md ; cp packages/fastcli/README.md docs/fastcli.md ; cp packages/padb/README.md docs/padb.md
run: cp README.md docs/index.md ; cp packages/flashcli/README.md docs/flashcli.md ; cp packages/padb/README.md docs/padb.md
- name: Deploy docs
uses: mhausenblas/mkdocs-deploy-gh-pages@master
# Or use mhausenblas/mkdocs-deploy-gh-pages@nomaterial to build without the mkdocs-material theme
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ theme:
nav:
- Home: index.md
- Padb: padb.md
- Fastp: fastcli.md
- Fastp: flashcli.md

markdown_extensions:
- toc:
Expand Down
4 changes: 2 additions & 2 deletions packages/fastcli/README.md → packages/flashcli/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[pip install fastcli](https://pypi.org/project/fastcli/#description)
[pip install flashcli](https://pypi.org/project/flashcli/#description)

## Framework

轻量级终端指令框架,`pip install fastcli`即可在自己的项目接入。只要创建一个存放命令的文件夹cmds即可。
轻量级终端指令框架,`pip install flashcli`即可在自己的项目接入。只要创建一个存放命令的文件夹cmds即可。

初始化框架
```python
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "fastcli"
name = "flashcli"
version = "1.3.0"
description = "fastcli"
description = "flashcli"
authors = ["electrolyteJ <electrolytej@gmail.com>"]
license = "Apache2"
readme = "README.md"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/padb/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ packages = [{ include = "padb", from = "src" }]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.28.2"
fastcli = { path = "../fastcli", develop = true }
flashcli = { path = "../flashcli", develop = true }

[tool.poetry.scripts]
padb = 'padb:entry'

0 comments on commit 78ccb49

Please sign in to comment.