easymd-cli 0.1.0__tar.gz → 0.1.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.
@@ -2,3 +2,4 @@ __pycache__/
2
2
  *.pyc
3
3
  .venv/
4
4
  .uv/
5
+ dist/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: easymd-cli
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Terminal Markdown editor with vim-style keys and live side-by-side preview
5
5
  Project-URL: Repository, https://github.com/decajoin/easymd
6
6
  Project-URL: Issues, https://github.com/decajoin/easymd/issues
@@ -13,12 +13,13 @@ Classifier: Environment :: Console
13
13
  Classifier: Intended Audience :: Developers
14
14
  Classifier: Operating System :: OS Independent
15
15
  Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
16
17
  Classifier: Programming Language :: Python :: 3.11
17
18
  Classifier: Programming Language :: Python :: 3.12
18
19
  Classifier: Programming Language :: Python :: 3.13
19
20
  Classifier: Topic :: Text Editors
20
21
  Classifier: Topic :: Text Processing :: Markup :: Markdown
21
- Requires-Python: >=3.11
22
+ Requires-Python: >=3.10
22
23
  Requires-Dist: textual[syntax]>=8.0
23
24
  Description-Content-Type: text/markdown
24
25
 
@@ -28,7 +29,7 @@ Description-Content-Type: text/markdown
28
29
 
29
30
  ## 安装
30
31
 
31
- 需要 Python 3.11+。
32
+ 需要 Python 3.10+。
32
33
 
33
34
  使用 [uv](https://docs.astral.sh/uv/)(推荐):
34
35
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  ## 安装
6
6
 
7
- 需要 Python 3.11+。
7
+ 需要 Python 3.10+。
8
8
 
9
9
  使用 [uv](https://docs.astral.sh/uv/)(推荐):
10
10
 
@@ -1,11 +1,11 @@
1
1
  [project]
2
2
  name = "easymd-cli"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = "Terminal Markdown editor with vim-style keys and live side-by-side preview"
5
5
  readme = "README.md"
6
6
  license = "MIT"
7
7
  license-files = ["LICENSE"]
8
- requires-python = ">=3.11"
8
+ requires-python = ">=3.10"
9
9
  authors = [{ name = "Yiqi Yang", email = "yangyiqi5261@gmail.com" }]
10
10
  keywords = ["markdown", "vim", "tui", "editor", "terminal", "textual"]
11
11
  classifiers = [
@@ -14,6 +14,7 @@ classifiers = [
14
14
  "Intended Audience :: Developers",
15
15
  "Operating System :: OS Independent",
16
16
  "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3.10",
17
18
  "Programming Language :: Python :: 3.11",
18
19
  "Programming Language :: Python :: 3.12",
19
20
  "Programming Language :: Python :: 3.13",
@@ -1,3 +1,3 @@
1
1
  """easymd: terminal Markdown editor with vim keys and live preview."""
2
2
 
3
- __version__ = "0.1.0"
3
+ __version__ = "0.1.1"
File without changes
File without changes
File without changes
File without changes