pifr 0.0.0__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.
- pifr-0.0.0/PKG-INFO +13 -0
- pifr-0.0.0/README.md +3 -0
- pifr-0.0.0/pyproject.toml +27 -0
- pifr-0.0.0/src/pifr/__init__.py +0 -0
- pifr-0.0.0/src/pifr/main.py +10 -0
pifr-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: pifr
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Default template for PDM package
|
|
5
|
+
Author-Email: ZHOU Cheng <c.zhou@live.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Requires-Dist: click==8.1.8
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# pifr
|
|
12
|
+
|
|
13
|
+
Pull docker image from remote host
|
pifr-0.0.0/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = [
|
|
3
|
+
"pdm-backend",
|
|
4
|
+
"pdm-build-locked",
|
|
5
|
+
]
|
|
6
|
+
build-backend = "pdm.backend"
|
|
7
|
+
|
|
8
|
+
[project]
|
|
9
|
+
name = "pifr"
|
|
10
|
+
version = "0.0.0"
|
|
11
|
+
description = "Default template for PDM package"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "ZHOU Cheng", email = "c.zhou@live.com" },
|
|
14
|
+
]
|
|
15
|
+
dependencies = [
|
|
16
|
+
"click==8.1.8",
|
|
17
|
+
]
|
|
18
|
+
requires-python = ">=3.10"
|
|
19
|
+
readme = "README.md"
|
|
20
|
+
|
|
21
|
+
[project.license]
|
|
22
|
+
text = "MIT"
|
|
23
|
+
|
|
24
|
+
[project.scripts]
|
|
25
|
+
pifr = "pifr.main:main"
|
|
26
|
+
|
|
27
|
+
[tool]
|
|
File without changes
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import click
|
|
2
|
+
|
|
3
|
+
@click.command()
|
|
4
|
+
@click.option('--name', default='World', help='The name to greet.')
|
|
5
|
+
def main(name):
|
|
6
|
+
"""Simple command that greets NAME for a total of COUNT times."""
|
|
7
|
+
click.echo(f'Hello, {name}!')
|
|
8
|
+
|
|
9
|
+
if __name__ == '__main__':
|
|
10
|
+
main()
|