pytrio 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.
pytrio-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,33 @@
1
+ Metadata-Version: 2.4
2
+ Name: pytrio
3
+ Version: 0.0.1
4
+ Summary: A simple hello world package
5
+ Author: jqs
6
+ License-Expression: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.8
10
+ Description-Content-Type: text/markdown
11
+
12
+ # pytrio
13
+
14
+ A simple hello world package.
15
+
16
+ ## Installation
17
+
18
+ ```bash
19
+ pip install pytrio
20
+ ```
21
+
22
+ ## Usage
23
+
24
+ ```python
25
+ from pytrio import hello
26
+ hello()
27
+ ```
28
+
29
+ Or from the command line:
30
+
31
+ ```bash
32
+ pytrio
33
+ ```
pytrio-0.0.1/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # pytrio
2
+
3
+ A simple hello world package.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install pytrio
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```python
14
+ from pytrio import hello
15
+ hello()
16
+ ```
17
+
18
+ Or from the command line:
19
+
20
+ ```bash
21
+ pytrio
22
+ ```
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "pytrio"
7
+ version = "0.0.1"
8
+ authors = [
9
+ { name="jqs" },
10
+ ]
11
+ description = "A simple hello world package"
12
+ readme = "README.md"
13
+ requires-python = ">=3.8"
14
+ license = "MIT"
15
+ classifiers = [
16
+ "Programming Language :: Python :: 3",
17
+ "Operating System :: OS Independent",
18
+ ]
19
+
20
+ [project.scripts]
21
+ pytrio = "pytrio.main:hello"
pytrio-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1 @@
1
+ from .main import hello
@@ -0,0 +1,5 @@
1
+ def hello():
2
+ print("Hello, World! This is pytrio.")
3
+
4
+ if __name__ == "__main__":
5
+ hello()
@@ -0,0 +1,33 @@
1
+ Metadata-Version: 2.4
2
+ Name: pytrio
3
+ Version: 0.0.1
4
+ Summary: A simple hello world package
5
+ Author: jqs
6
+ License-Expression: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.8
10
+ Description-Content-Type: text/markdown
11
+
12
+ # pytrio
13
+
14
+ A simple hello world package.
15
+
16
+ ## Installation
17
+
18
+ ```bash
19
+ pip install pytrio
20
+ ```
21
+
22
+ ## Usage
23
+
24
+ ```python
25
+ from pytrio import hello
26
+ hello()
27
+ ```
28
+
29
+ Or from the command line:
30
+
31
+ ```bash
32
+ pytrio
33
+ ```
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/pytrio/__init__.py
4
+ src/pytrio/main.py
5
+ src/pytrio.egg-info/PKG-INFO
6
+ src/pytrio.egg-info/SOURCES.txt
7
+ src/pytrio.egg-info/dependency_links.txt
8
+ src/pytrio.egg-info/entry_points.txt
9
+ src/pytrio.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ pytrio = pytrio.main:hello
@@ -0,0 +1 @@
1
+ pytrio