aoiro 0.0.2__py3-none-any.whl → 0.1.0__py3-none-any.whl

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.
@@ -0,0 +1,268 @@
1
+ Metadata-Version: 2.3
2
+ Name: aoiro
3
+ Version: 0.1.0
4
+ Summary: CSV-based 青色申告 CLI app
5
+ License: AGPL-3.0-only
6
+ Author: 34j
7
+ Author-email: 34j.github@proton.me
8
+ Requires-Python: >=3.10,<4.0
9
+ Classifier: Development Status :: 2 - Pre-Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
12
+ Classifier: Natural Language :: English
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Topic :: Software Development :: Libraries
20
+ Requires-Dist: account-codes-jp (>=0.4.0,<0.5.0)
21
+ Requires-Dist: attrs (>=25.1.0,<26.0.0)
22
+ Requires-Dist: cyclopts (>=3.9.3,<4.0.0)
23
+ Requires-Dist: dateparser (>=1.2.1,<2.0.0)
24
+ Requires-Dist: networkx (>=3.4.2,<4.0.0)
25
+ Requires-Dist: openpyxl (>=3.1.5,<4.0.0)
26
+ Requires-Dist: pandas (>=2.2.3,<3.0.0)
27
+ Requires-Dist: requests-cache (>=1.2.1,<2.0.0)
28
+ Requires-Dist: rich (>=13.9.4,<14.0.0)
29
+ Project-URL: Bug Tracker, https://github.com/34j/aoiro/issues
30
+ Project-URL: Changelog, https://github.com/34j/aoiro/blob/main/CHANGELOG.md
31
+ Project-URL: Documentation, https://aoiro.readthedocs.io
32
+ Project-URL: Repository, https://github.com/34j/aoiro
33
+ Description-Content-Type: text/markdown
34
+
35
+ # Aoiro
36
+
37
+ <p align="center">
38
+ <a href="https://github.com/34j/aoiro/actions/workflows/ci.yml?query=branch%3Amain">
39
+ <img src="https://img.shields.io/github/actions/workflow/status/34j/aoiro/ci.yml?branch=main&label=CI&logo=github&style=flat-square" alt="CI Status" >
40
+ </a>
41
+ <a href="https://aoiro.readthedocs.io">
42
+ <img src="https://img.shields.io/readthedocs/aoiro.svg?logo=read-the-docs&logoColor=fff&style=flat-square" alt="Documentation Status">
43
+ </a>
44
+ <a href="https://codecov.io/gh/34j/aoiro">
45
+ <img src="https://img.shields.io/codecov/c/github/34j/aoiro.svg?logo=codecov&logoColor=fff&style=flat-square" alt="Test coverage percentage">
46
+ </a>
47
+ </p>
48
+ <p align="center">
49
+ <a href="https://python-poetry.org/">
50
+ <img src="https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json" alt="Poetry">
51
+ </a>
52
+ <a href="https://github.com/astral-sh/ruff">
53
+ <img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json" alt="Ruff">
54
+ </a>
55
+ <a href="https://github.com/pre-commit/pre-commit">
56
+ <img src="https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white&style=flat-square" alt="pre-commit">
57
+ </a>
58
+ </p>
59
+ <p align="center">
60
+ <a href="https://pypi.org/project/aoiro/">
61
+ <img src="https://img.shields.io/pypi/v/aoiro.svg?logo=python&logoColor=fff&style=flat-square" alt="PyPI Version">
62
+ </a>
63
+ <img src="https://img.shields.io/pypi/pyversions/aoiro.svg?style=flat-square&logo=python&amp;logoColor=fff" alt="Supported Python versions">
64
+ <img src="https://img.shields.io/pypi/l/aoiro.svg?style=flat-square" alt="License">
65
+ </p>
66
+
67
+ ---
68
+
69
+ **Documentation**: <a href="https://aoiro.readthedocs.io" target="_blank">https://aoiro.readthedocs.io </a>
70
+
71
+ **Source Code**: <a href="https://github.com/34j/aoiro" target="_blank">https://github.com/34j/aoiro </a>
72
+
73
+ ---
74
+
75
+ CSV-based 青色申告 CLI app
76
+
77
+ ## Motivation
78
+
79
+ - 従来の仕訳帳には、次のような問題点がある。
80
+ 1. 外貨、証券、商品、固定資産の所持量が把握できない。
81
+ 2. 負数の忌避を行うため、各勘定科目の「ホームポジション」が貸方か借方か記入者が理解していなければならない。また、各ホームポジションごとに処理を分ける必要があり、実装が煩雑になる。
82
+ - 上記の問題を解決するため、本プロジェクトでは次のような手法を採用する。
83
+ 1. [Ellerman 1986](https://ellerman.org/Davids-Stuff/Maths/Omega-DEB.CV.pdf)によるVectorized Accountingを導入し、資産の種類ごとに取引量を記録する。
84
+ 2. 負数の忌避を行わず、仕訳帳の各行を「仕訳要素」の集合として表現する「一般化仕訳帳」を導入する。
85
+ - つまり、本システムは次の要素から構成される。
86
+ - (日付の全体集合)`Date`: `Set`
87
+ - (勘定科目の全体集合)`Account`: `Set`
88
+ - (通貨の全体集合)`Currency`: `Set`
89
+ - (「ホームポジション」が貸方か借方か)`is_debit`: `Account -> bool`
90
+ - (決算で引き継ぐかどうか)`is_static`: `Account -> bool`
91
+ - (一般化仕訳)`GeneralLedgerLine`: `Set<(Date, Account, Currency, Real)>`
92
+ - (一般化仕訳帳)`GeneralLedger`: `Set<GeneralLedgerLine>`
93
+ - `GeneralLedger` さえあれば、賃借対照表・損益計算書の各項目までは、`groupby` + `sum` で計算できる。
94
+ - 各項目の集計と、齟齬がないことを確認するためには、勘定科目の5分類(資産、負債、純資産、収益、費用)の知識が必要である。本プロジェクトではこれに、EDINETタクソノミ、または青色申告決算書及び会計ソフトで一般的に使われる勘定科目に関するパッケージ[account-codes-jp](https://github.com/34j/account-codes-jp)を利用する。
95
+ - Vectorized Ledgerを通常の仕訳帳に変換するためには、各日付での資産の価値が必要である。本プロジェクトでは、現時点では外貨のみに対応している。([みずほ銀行が提供する仲値](https://www.mizuhobank.co.jp/market/historical/index.html)をffillして利用する。)
96
+
97
+ - While it is often explained that the general ledger enables one to understand the accounting status at any given point in the history, but in reality, the real quantity of foreign currency, securities, goods, and fixed assets cannot be understood by the general ledger alone.
98
+ - This project aims to combine the "multidimensional" or "vectorized" accounting introduced by [Ellerman 1986](https://ellerman.org/Davids-Stuff/Maths/Omega-DEB.CV.pdf) and matrix accounting, and tries to create real-world blue-return accounting sheets by referring to [Ozawa 2023](https://waseda.repo.nii.ac.jp/record/77807/files/ShogakuKenkyukaKiyo_96_6.pdf).
99
+ - In short, this system is composed of the following elements:
100
+ - `Date`: `Set`
101
+ - `Account`: `Set`
102
+ - `Currency`: `Set`
103
+ - `is_debit`: `Account -> bool`
104
+ - `is_static`: `Account -> bool`
105
+ - `GeneralLedgerLine`: `Set<(Date, Account, Currency, Real)>`
106
+ - `GeneralLedger`: `Set<GeneralLedgerLine>`
107
+ - `GeneralLedger` should be enough to create B/S, P/L sheets.
108
+
109
+ ## Installation
110
+
111
+ Install this via pip (or your favourite package manager):
112
+
113
+ ```shell
114
+ pip install aoiro
115
+ ```
116
+
117
+ ## Usage
118
+
119
+ - 本プロジェクトは主に仕入や株などの取引などを扱わない事業者向けに設計されているため、そうでない事業者にとっては、利用が困難な場合があります。その場合でも、Python APIを利用して、`sales`や`expenses`のようにカスタムリーダーを作成したり、一般化仕訳帳を手動で作成することで、対応が可能かもしれません。PRも歓迎します。
120
+
121
+ 本プロジェクトでは、次のようなディレクトリ構造を利用する。
122
+
123
+ ```shell
124
+ $ tree .
125
+ ├── expenses
126
+ │ └── amazon.csv
127
+ ├── general
128
+ │ └── bs.csv
129
+ └── sales
130
+ ├── booth.csv
131
+ ├── dlsite.csv
132
+ └── steam.csv
133
+ ```
134
+
135
+ 1. 最も基本的な形式は`general`ディレクトリ内にある一般化仕訳帳を表すCSVファイル群であり、次のようなヘッダー**なし**CSVファイルである。
136
+
137
+ ```csv
138
+ 2025-01-01,現金,1000,売上,1000
139
+ 2025-01-03,現金,10USD,現金,-1000
140
+ 2025-01-02,消耗品,USD 8,現金,USD -10,土地,1 LandX
141
+ ```
142
+
143
+ - 各行の順序は任意である。
144
+ - 第2行では両替を行っている。
145
+ - 第3行では、消耗品及び土地の購入を行っている。土地の相場は変化する可能性があるため、通貨`LandX`を導入する。
146
+ - 本プロジェクトはあくまで集計機としての立場(`groupby` + `sum`)をとり、「決算」の概念に直接対応していないため、昨年の賃借対照表を次のように入力する必要がある。例えば、次の例では、前期の期末時点で未入金の売掛金1000円、買掛金500円を繰り入れている。
147
+
148
+ ```csv
149
+ 2025-01-01,売掛金,1000,元入金,1000
150
+ 2025-01-01,買掛金,500,元入金,-500
151
+ ```
152
+
153
+ 1. `expenses`は経費を表すCSVファイル群であり、次のようなヘッダー**あり**CSVファイルである。
154
+
155
+ ```csv
156
+ 発生日,勘定科目,金額
157
+ 2025-01-01,消耗品費,1000
158
+ ```
159
+
160
+ - 各行・各列の順序は任意である。
161
+
162
+ 1. `sales`は売上を表すCSVファイル群であり、次のようなヘッダー**あり**CSVファイルである。
163
+
164
+ ```csv
165
+ 発生日,振込日,金額,源泉徴収,手数料
166
+ 2024-12,2025-01-20,1234,true,100
167
+ ```
168
+
169
+ - 各行・各列の順序は任意である。
170
+ - ファイル名は取引先を表す。
171
+ - 源泉徴収は`true`であれば一般的な源泉徴収額の計算を行うが、常に一致するとは限らない。具体的な数値に設定することもできる。
172
+
173
+ 為替差損益は自動で計算され、最終的に次のような出力が得られる。
174
+
175
+ ```shell
176
+ amount currency debit_account credit_account
177
+ date
178
+ 2024-01-01 1234 現金 元入金
179
+ 2024-01-20 1234 事業主貸 売掛金
180
+ 2024-01-20 1109 事業主貸 諸口
181
+ 2024-01-20 125 仮払税金(dlsite) 諸口
182
+ 2024-01-20 1234 諸口 売掛金
183
+ 2024-01-31 1475 売掛金 売上(steam)
184
+ 2024-01-31 2345 売掛金 売上(dlsite)
185
+ 2024-02-20 2106 事業主貸 諸口
186
+ 2024-02-20 239 仮払税金(dlsite) 諸口
187
+ 2024-02-20 2345 諸口 売掛金
188
+ 2024-02-20 1503 事業主貸 諸口
189
+ 2024-02-20 1475 諸口 売掛金
190
+ 2024-02-20 28 諸口 為替差益
191
+ 2024-03-01 765 消耗品費 事業主借
192
+ ╙── None/0
193
+ ├─╼ 賃借対照表/3083
194
+ │ ├─╼ 資産/5082
195
+ │ │ ├─╼ 資産/-1234
196
+ │ │ │ ├─╼ 現金/1234
197
+ │ │ │ └─╼ 売掛金/-2468
198
+ │ │ └─╼ 事業主貸/6316
199
+ │ │ └─╼ 事業主貸/6316
200
+ │ │ ├─╼ 事業主貸/5952
201
+ │ │ └─╼ 仮払税金/364
202
+ │ │ └─╼ 仮払税金(dlsite)/364
203
+ │ ├─╼ 負債/765
204
+ │ │ └─╼ 事業主借/765
205
+ │ │ └─╼ 事業主借/765
206
+ │ └─╼ 純資産/1234
207
+ │ └─╼ 純資産/1234
208
+ │ └─╼ 元入金/1234
209
+ └─╼ 損益計算書/-3083
210
+ ├─╼ 収益/3848
211
+ │ └─╼ 売上/3848
212
+ │ ├─╼ 売上/3820
213
+ │ │ └─╼ 売上/3820
214
+ │ │ ├─╼ 売上(steam)/1475
215
+ │ │ └─╼ 売上(dlsite)/2345
216
+ │ └─╼ 為替差益/28
217
+ └─╼ 費用/765
218
+ └─╼ 経費/765
219
+ └─╼ 消耗品費/765
220
+ Sales per month
221
+ 1: 3820
222
+ 2: 0
223
+ 3: 0
224
+ 4: 0
225
+ 5: 0
226
+ 6: 0
227
+ 7: 0
228
+ 8: 0
229
+ 9: 0
230
+ 10: 0
231
+ 11: 0
232
+ 12: 0
233
+ ```
234
+
235
+ 仮払税金が想定される源泉徴収額であるが、実際には異なる場合があるため、支払調書を確認されたい。
236
+ 上記の情報は、青色申告決算書を作成するにあたっては十分である。作成にあたっては、[国税庁 確定申告書等作成コーナー](https://www.keisan.nta.go.jp/kyoutu/ky/sm/top#bsctrl)が便利である。本プロジェクトでは、青色申告決算書の作成への対応は行わない。(あまりにも難しいため。大量の仕様書は[こちら](https://www.e-tax.nta.go.jp/shiyo/index.htm)。)
237
+
238
+ ## Contributors ✨
239
+
240
+ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
241
+
242
+ <!-- prettier-ignore-start -->
243
+ <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
244
+ <!-- prettier-ignore-start -->
245
+ <!-- markdownlint-disable -->
246
+ <table>
247
+ <tbody>
248
+ <tr>
249
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/34j"><img src="https://avatars.githubusercontent.com/u/55338215?v=4?s=80" width="80px;" alt="34j"/><br /><sub><b>34j</b></sub></a><br /><a href="https://github.com/34j/aoiro/commits?author=34j" title="Code">💻</a> <a href="#ideas-34j" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/34j/aoiro/commits?author=34j" title="Documentation">📖</a></td>
250
+ </tr>
251
+ </tbody>
252
+ </table>
253
+
254
+ <!-- markdownlint-restore -->
255
+ <!-- prettier-ignore-end -->
256
+
257
+ <!-- ALL-CONTRIBUTORS-LIST:END -->
258
+ <!-- prettier-ignore-end -->
259
+
260
+ This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
261
+
262
+ ## Credits
263
+
264
+ This package was created with
265
+ [Copier](https://copier.readthedocs.io/) and the
266
+ [browniebroke/pypackage-template](https://github.com/browniebroke/pypackage-template)
267
+ project template.
268
+
@@ -0,0 +1,17 @@
1
+ aoiro/__init__.py,sha256=D8t03maRfGmkHrZtRdmbJ5U5NCEIpB7Zh8FbEytsXHk,1342
2
+ aoiro/__main__.py,sha256=37q_z3ZTcZhgeSOGjKR91PPFHinUKZpyZTTfpiOizjs,80
3
+ aoiro/_ledger.py,sha256=uqpy9lenWdxNa-7UkKQRu2YMX74Byw2dbrgyAtuVf4o,8662
4
+ aoiro/_multidimensional.py,sha256=1XOsLX8JULZ5KdTMaePWt_emYHlTY0tzZP6yglxa2vU,6046
5
+ aoiro/_sheets.py,sha256=Nt8LGXfzF8H8lr9HruuOxnRqv0nzWZmOqjxEDar90i0,3640
6
+ aoiro/account.yml,sha256=numLMyG2-8eKnzTHfGP_WrIL6D1bx5p2RhsoPFu4gWU,1501
7
+ aoiro/cli.py,sha256=xm3PXRYoHDYQvUXbwNVe0hzkIajB_PF6H55M1CKK5mI,3330
8
+ aoiro/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ aoiro/reader/__init__.py,sha256=h53M_CpbPpZVCnY3nxY6qqWmabK_50X8sih-G_adFN4,332
10
+ aoiro/reader/_expenses.py,sha256=ncZug8uwMGC18qJLCOEkLLbdASMdaoLc87IoZ9o4KrM,1394
11
+ aoiro/reader/_io.py,sha256=8GSkBxn_8MVpq-4-47FeXEI5D1sugR415LsRA5hQH_I,4411
12
+ aoiro/reader/_sales.py,sha256=jRzs2032YqZNiSbdrp-G9Qhlo8AA40fYmhBhFFQuViE,5297
13
+ aoiro-0.1.0.dist-info/LICENSE,sha256=2xqHuoHohba7gpcZZKtOICRjzeKsQANXG8WoV9V35KM,33893
14
+ aoiro-0.1.0.dist-info/METADATA,sha256=ZMkQgpsV3fny5YYwXd2qCNmOj5h_e14eNcAfdCUFlpA,13486
15
+ aoiro-0.1.0.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
16
+ aoiro-0.1.0.dist-info/entry_points.txt,sha256=bfcB8r_8xOWhLGp_SRYaNbohnbiZjhCCsHWCgtLeMWM,39
17
+ aoiro-0.1.0.dist-info/RECORD,,
aoiro/main.py DELETED
@@ -1,3 +0,0 @@
1
- def add(n1: int, n2: int) -> int:
2
- """Add the arguments."""
3
- return n1 + n2
@@ -1,107 +0,0 @@
1
- Metadata-Version: 2.3
2
- Name: aoiro
3
- Version: 0.0.2
4
- Summary: CSV-based 青色申告 CLI app
5
- License: GNU General Public License v3
6
- Author: 34j
7
- Author-email: 34j.github@proton.me
8
- Requires-Python: >=3.9,<4.0
9
- Classifier: Development Status :: 2 - Pre-Alpha
10
- Classifier: Intended Audience :: Developers
11
- Classifier: License :: Other/Proprietary License
12
- Classifier: Natural Language :: English
13
- Classifier: Operating System :: OS Independent
14
- Classifier: Programming Language :: Python :: 3
15
- Classifier: Programming Language :: Python :: 3.9
16
- Classifier: Programming Language :: Python :: 3.10
17
- Classifier: Programming Language :: Python :: 3.11
18
- Classifier: Programming Language :: Python :: 3.12
19
- Classifier: Programming Language :: Python :: 3.13
20
- Classifier: Topic :: Software Development :: Libraries
21
- Requires-Dist: rich (>=10)
22
- Requires-Dist: typer[all] (>=0.15.0,<0.16.0)
23
- Project-URL: Bug Tracker, https://github.com/34j/aoiro/issues
24
- Project-URL: Changelog, https://github.com/34j/aoiro/blob/main/CHANGELOG.md
25
- Project-URL: Documentation, https://aoiro.readthedocs.io
26
- Project-URL: Repository, https://github.com/34j/aoiro
27
- Description-Content-Type: text/markdown
28
-
29
- # Aoiro
30
-
31
- <p align="center">
32
- <a href="https://github.com/34j/aoiro/actions/workflows/ci.yml?query=branch%3Amain">
33
- <img src="https://img.shields.io/github/actions/workflow/status/34j/aoiro/ci.yml?branch=main&label=CI&logo=github&style=flat-square" alt="CI Status" >
34
- </a>
35
- <a href="https://aoiro.readthedocs.io">
36
- <img src="https://img.shields.io/readthedocs/aoiro.svg?logo=read-the-docs&logoColor=fff&style=flat-square" alt="Documentation Status">
37
- </a>
38
- <a href="https://codecov.io/gh/34j/aoiro">
39
- <img src="https://img.shields.io/codecov/c/github/34j/aoiro.svg?logo=codecov&logoColor=fff&style=flat-square" alt="Test coverage percentage">
40
- </a>
41
- </p>
42
- <p align="center">
43
- <a href="https://python-poetry.org/">
44
- <img src="https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json" alt="Poetry">
45
- </a>
46
- <a href="https://github.com/astral-sh/ruff">
47
- <img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json" alt="Ruff">
48
- </a>
49
- <a href="https://github.com/pre-commit/pre-commit">
50
- <img src="https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white&style=flat-square" alt="pre-commit">
51
- </a>
52
- </p>
53
- <p align="center">
54
- <a href="https://pypi.org/project/aoiro/">
55
- <img src="https://img.shields.io/pypi/v/aoiro.svg?logo=python&logoColor=fff&style=flat-square" alt="PyPI Version">
56
- </a>
57
- <img src="https://img.shields.io/pypi/pyversions/aoiro.svg?style=flat-square&logo=python&amp;logoColor=fff" alt="Supported Python versions">
58
- <img src="https://img.shields.io/pypi/l/aoiro.svg?style=flat-square" alt="License">
59
- </p>
60
-
61
- ---
62
-
63
- **Documentation**: <a href="https://aoiro.readthedocs.io" target="_blank">https://aoiro.readthedocs.io </a>
64
-
65
- **Source Code**: <a href="https://github.com/34j/aoiro" target="_blank">https://github.com/34j/aoiro </a>
66
-
67
- ---
68
-
69
- CSV-based 青色申告 CLI app
70
-
71
- ## Installation
72
-
73
- Install this via pip (or your favourite package manager):
74
-
75
- `pip install aoiro`
76
-
77
- ## Contributors ✨
78
-
79
- Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
80
-
81
- <!-- prettier-ignore-start -->
82
- <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
83
- <!-- prettier-ignore-start -->
84
- <!-- markdownlint-disable -->
85
- <table>
86
- <tbody>
87
- <tr>
88
- <td align="center" valign="top" width="14.28%"><a href="https://github.com/34j"><img src="https://avatars.githubusercontent.com/u/55338215?v=4?s=80" width="80px;" alt="34j"/><br /><sub><b>34j</b></sub></a><br /><a href="https://github.com/34j/aoiro/commits?author=34j" title="Code">💻</a> <a href="#ideas-34j" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/34j/aoiro/commits?author=34j" title="Documentation">📖</a></td>
89
- </tr>
90
- </tbody>
91
- </table>
92
-
93
- <!-- markdownlint-restore -->
94
- <!-- prettier-ignore-end -->
95
-
96
- <!-- ALL-CONTRIBUTORS-LIST:END -->
97
- <!-- prettier-ignore-end -->
98
-
99
- This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
100
-
101
- ## Credits
102
-
103
- This package was created with
104
- [Copier](https://copier.readthedocs.io/) and the
105
- [browniebroke/pypackage-template](https://github.com/browniebroke/pypackage-template)
106
- project template.
107
-
@@ -1,10 +0,0 @@
1
- aoiro/__init__.py,sha256=QvlVh4JTl3JL7jQAja76yKtT-IvF4631ASjWY1wS6AQ,22
2
- aoiro/__main__.py,sha256=HgeO8VBtsUmeqzLmhCa6egXzubnSmJL65d1LUQtbelE,97
3
- aoiro/cli.py,sha256=RSDcFm6oNar9J0hDAeWlFrqgXcGPsQ6tpzsNQkcVVZA,206
4
- aoiro/main.py,sha256=j2h8YoaIyvMAosyxXlV3rlWEQ7x1yvnZWhdjVG4vXdU,82
5
- aoiro/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
- aoiro-0.0.2.dist-info/LICENSE,sha256=trmBmlylBLA6tI9-cy0S2yAPcvit3NQtt_Jsbl7fcGY,35075
7
- aoiro-0.0.2.dist-info/METADATA,sha256=Q8lKPHKV3RlcNJddox-Bm5HIvcJ3WlzLLa68jkuk1FI,4446
8
- aoiro-0.0.2.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
9
- aoiro-0.0.2.dist-info/entry_points.txt,sha256=bfcB8r_8xOWhLGp_SRYaNbohnbiZjhCCsHWCgtLeMWM,39
10
- aoiro-0.0.2.dist-info/RECORD,,
File without changes