aoiro 0.0.1__tar.gz → 0.0.2__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.
- {aoiro-0.0.1 → aoiro-0.0.2}/PKG-INFO +2 -2
- {aoiro-0.0.1 → aoiro-0.0.2}/pyproject.toml +2 -2
- aoiro-0.0.2/src/aoiro/__init__.py +1 -0
- aoiro-0.0.1/src/aoiro/__init__.py +0 -1
- {aoiro-0.0.1 → aoiro-0.0.2}/LICENSE +0 -0
- {aoiro-0.0.1 → aoiro-0.0.2}/README.md +0 -0
- {aoiro-0.0.1 → aoiro-0.0.2}/src/aoiro/__main__.py +0 -0
- {aoiro-0.0.1 → aoiro-0.0.2}/src/aoiro/cli.py +0 -0
- {aoiro-0.0.1 → aoiro-0.0.2}/src/aoiro/main.py +0 -0
- {aoiro-0.0.1 → aoiro-0.0.2}/src/aoiro/py.typed +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: aoiro
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.2
|
4
4
|
Summary: CSV-based 青色申告 CLI app
|
5
5
|
License: GNU General Public License v3
|
6
6
|
Author: 34j
|
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.13
|
20
20
|
Classifier: Topic :: Software Development :: Libraries
|
21
21
|
Requires-Dist: rich (>=10)
|
22
|
-
Requires-Dist: typer[all] (>=0.
|
22
|
+
Requires-Dist: typer[all] (>=0.15.0,<0.16.0)
|
23
23
|
Project-URL: Bug Tracker, https://github.com/34j/aoiro/issues
|
24
24
|
Project-URL: Changelog, https://github.com/34j/aoiro/blob/main/CHANGELOG.md
|
25
25
|
Project-URL: Documentation, https://aoiro.readthedocs.io
|
@@ -4,7 +4,7 @@ requires = [ "poetry-core>=1.0.0" ]
|
|
4
4
|
|
5
5
|
[tool.poetry]
|
6
6
|
name = "aoiro"
|
7
|
-
version = "0.0.
|
7
|
+
version = "0.0.2"
|
8
8
|
description = "CSV-based 青色申告 CLI app"
|
9
9
|
authors = [ "34j <34j.github@proton.me>" ]
|
10
10
|
license = "GNU General Public License v3"
|
@@ -32,7 +32,7 @@ aoiro = "aoiro.cli:app"
|
|
32
32
|
[tool.poetry.dependencies]
|
33
33
|
python = "^3.9"
|
34
34
|
rich = ">=10"
|
35
|
-
typer = { extras = [ "all" ], version = "^0.
|
35
|
+
typer = { extras = [ "all" ], version = "^0.15.0" }
|
36
36
|
|
37
37
|
[tool.poetry.group.dev.dependencies]
|
38
38
|
pytest = "^8.0.0"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.0.2"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.0.1"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|