bash8 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.
- bash8-0.0.0/PKG-INFO +9 -0
- bash8-0.0.0/README.md +1 -0
- bash8-0.0.0/pyproject.toml +14 -0
- bash8-0.0.0/setup.cfg +4 -0
- bash8-0.0.0/src/bash8.egg-info/PKG-INFO +9 -0
- bash8-0.0.0/src/bash8.egg-info/SOURCES.txt +7 -0
- bash8-0.0.0/src/bash8.egg-info/dependency_links.txt +1 -0
- bash8-0.0.0/src/bash8.egg-info/top_level.txt +1 -0
- bash8-0.0.0/src/ca_certificates/__init__.py +4 -0
bash8-0.0.0/PKG-INFO
ADDED
bash8-0.0.0/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# bash8\nA dummy Python package version of bash8.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[build-bash8tem]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "bash8"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Dummy bash8 package for PyPI"
|
|
9
|
+
authors = [{name="Your Name", email="you@example.com"}]
|
|
10
|
+
readme = "README.md"
|
|
11
|
+
requires-python = ">=3.7"
|
|
12
|
+
|
|
13
|
+
[tool.setuptools.packages.find]
|
|
14
|
+
where = ["src"]
|
bash8-0.0.0/setup.cfg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ca_certificates
|