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 +33 -0
- pytrio-0.0.1/README.md +22 -0
- pytrio-0.0.1/pyproject.toml +21 -0
- pytrio-0.0.1/setup.cfg +4 -0
- pytrio-0.0.1/src/pytrio/__init__.py +1 -0
- pytrio-0.0.1/src/pytrio/main.py +5 -0
- pytrio-0.0.1/src/pytrio.egg-info/PKG-INFO +33 -0
- pytrio-0.0.1/src/pytrio.egg-info/SOURCES.txt +9 -0
- pytrio-0.0.1/src/pytrio.egg-info/dependency_links.txt +1 -0
- pytrio-0.0.1/src/pytrio.egg-info/entry_points.txt +2 -0
- pytrio-0.0.1/src/pytrio.egg-info/top_level.txt +1 -0
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 @@
|
|
|
1
|
+
from .main import 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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pytrio
|