ecli-editor 0.0.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.
@@ -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,3 @@
1
+ # ecli-editor
2
+
3
+ Placeholder package to reserve the project name on PyPI.
@@ -0,0 +1,28 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.27"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "ecli-editor"
7
+ version = "0.0.1"
8
+ description = "ECLI — fast terminal code editor (placeholder)"
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = "Apache-2.0"
12
+ authors = [
13
+ { name = "Siergej Sobolewski", email = "siergej@hotmail.com" },
14
+ ]
15
+ keywords = ["editor", "terminal", "tui", "placeholder"]
16
+
17
+ [project.scripts]
18
+ ecli = "ecli.__main__:main"
19
+
20
+ [project.urls]
21
+ Homepage = "https://github.com/SSobol77/ecli"
22
+ Repository = "https://github.com/SSobol77/ecli"
23
+
24
+ [tool.hatch.build.targets.wheel]
25
+ packages = ["src/ecli"]
26
+
27
+ [tool.hatch.build.targets.sdist]
28
+ include = ["/src", "/README.md", "/LICENSE", "/pyproject.toml"]
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"
@@ -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()