robin-pkg 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.
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.1
2
+ Name: robin-pkg
3
+ Version: 0.0.0
4
+ Summary: A bare bones Python package
5
+ Requires-Python: >=3.8
6
+ Description-Content-Type: text/markdown
7
+
8
+ # robin
9
+
10
+ A bare bones Python package.
11
+
12
+ ## Install
13
+
14
+ ```bash
15
+ pip install -e .
16
+ ```
@@ -0,0 +1,9 @@
1
+ # robin
2
+
3
+ A bare bones Python package.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ pip install -e .
9
+ ```
@@ -0,0 +1,14 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "robin-pkg"
7
+ version = "0.0.0"
8
+ description = "A bare bones Python package"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+
12
+ [tool.setuptools.packages.find]
13
+ where = ["."]
14
+ include = ["robin*"]
@@ -0,0 +1,3 @@
1
+ """Robin - a bare bones Python package."""
2
+
3
+ __version__ = "0.1.0"
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.1
2
+ Name: robin-pkg
3
+ Version: 0.0.0
4
+ Summary: A bare bones Python package
5
+ Requires-Python: >=3.8
6
+ Description-Content-Type: text/markdown
7
+
8
+ # robin
9
+
10
+ A bare bones Python package.
11
+
12
+ ## Install
13
+
14
+ ```bash
15
+ pip install -e .
16
+ ```
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ robin/__init__.py
4
+ robin_pkg.egg-info/PKG-INFO
5
+ robin_pkg.egg-info/SOURCES.txt
6
+ robin_pkg.egg-info/dependency_links.txt
7
+ robin_pkg.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ robin
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+