afriends 0.6.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.
- afriends-0.6.1/PKG-INFO +14 -0
- afriends-0.6.1/README.md +5 -0
- afriends-0.6.1/afriends.egg-info/PKG-INFO +14 -0
- afriends-0.6.1/afriends.egg-info/SOURCES.txt +7 -0
- afriends-0.6.1/afriends.egg-info/dependency_links.txt +1 -0
- afriends-0.6.1/afriends.egg-info/requires.txt +1 -0
- afriends-0.6.1/afriends.egg-info/top_level.txt +1 -0
- afriends-0.6.1/pyproject.toml +15 -0
- afriends-0.6.1/setup.cfg +4 -0
afriends-0.6.1/PKG-INFO
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: afriends
|
|
3
|
+
Version: 0.6.1
|
|
4
|
+
Summary: Reservation compatibility package for afriend
|
|
5
|
+
License-Expression: MIT
|
|
6
|
+
Requires-Python: >=3.11
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
Requires-Dist: afriend==0.6.1
|
|
9
|
+
|
|
10
|
+
# afriends
|
|
11
|
+
|
|
12
|
+
This reservation distribution installs the canonical [afriend](https://pypi.org/project/afriend/) package.
|
|
13
|
+
|
|
14
|
+
Use `afriend` for new installations. It provides the `afriend` command and Python import.
|
afriends-0.6.1/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: afriends
|
|
3
|
+
Version: 0.6.1
|
|
4
|
+
Summary: Reservation compatibility package for afriend
|
|
5
|
+
License-Expression: MIT
|
|
6
|
+
Requires-Python: >=3.11
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
Requires-Dist: afriend==0.6.1
|
|
9
|
+
|
|
10
|
+
# afriends
|
|
11
|
+
|
|
12
|
+
This reservation distribution installs the canonical [afriend](https://pypi.org/project/afriend/) package.
|
|
13
|
+
|
|
14
|
+
Use `afriend` for new installations. It provides the `afriend` command and Python import.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
afriend==0.6.1
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=77", "wheel>=0.43"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "afriends"
|
|
7
|
+
version = "0.6.1"
|
|
8
|
+
description = "Reservation compatibility package for afriend"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
dependencies = ["afriend==0.6.1"]
|
|
13
|
+
|
|
14
|
+
[tool.setuptools]
|
|
15
|
+
packages = []
|
afriends-0.6.1/setup.cfg
ADDED