ecli-editor 0.0.1__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.
ecli/__init__.py ADDED
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"
ecli/__main__.py ADDED
@@ -0,0 +1,6 @@
1
+ def main():
2
+ print("ecli-editor 0.0.1 — placeholder")
3
+ print("The real package will be published soon.")
4
+
5
+ if __name__ == "__main__":
6
+ main()
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: ecli-editor
3
+ Version: 0.0.1
4
+ Summary: ECLI — fast terminal code editor (placeholder)
5
+ Project-URL: Homepage, https://github.com/SSobol77/ecli
6
+ Project-URL: Repository, https://github.com/SSobol77/ecli
7
+ Author-email: Siergej Sobolewski <siergej@hotmail.com>
8
+ License-Expression: Apache-2.0
9
+ Keywords: editor,placeholder,terminal,tui
10
+ Requires-Python: >=3.11
11
+ Description-Content-Type: text/markdown
12
+
13
+ # ecli-editor
14
+
15
+ Placeholder package to reserve the project name on PyPI.
@@ -0,0 +1,6 @@
1
+ ecli/__init__.py,sha256=sXLh7g3KC4QCFxcZGBTpG2scR7hmmBsMjq6LqRptkRg,22
2
+ ecli/__main__.py,sha256=5cceo7EdTxv9AH-jWAqGjl5vglLs6wH0CWC614nd43w,152
3
+ ecli_editor-0.0.1.dist-info/METADATA,sha256=YmQ_feLReO19VgTW9lqFCPFVpsU8EUrNygACZv9ic2s,492
4
+ ecli_editor-0.0.1.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
5
+ ecli_editor-0.0.1.dist-info/entry_points.txt,sha256=UKrzxKh5OOe_Bet7uUkstzniqADh5HFPeeUcXicYwyI,44
6
+ ecli_editor-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ ecli = ecli.__main__:main