panofy 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.
panofy-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: panofy
3
+ Version: 0.0.1
4
+ Summary: An empty Python project.
5
+ Requires-Python: >=3.9
6
+ Description-Content-Type: text/markdown
7
+
8
+ # panofy
9
+
10
+ An empty Python project.
11
+
panofy-0.0.1/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # panofy
2
+
3
+ An empty Python project.
4
+
@@ -0,0 +1,15 @@
1
+ [build-system]
2
+ requires = ["setuptools>=69", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "panofy"
7
+ version = "0.0.1"
8
+ description = "An empty Python project."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ dependencies = []
12
+
13
+ [tool.setuptools.packages.find]
14
+ where = ["src"]
15
+
panofy-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,6 @@
1
+ """panofy package."""
2
+
3
+ __all__ = ["__version__"]
4
+
5
+ __version__ = "0.0.1"
6
+
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: panofy
3
+ Version: 0.0.1
4
+ Summary: An empty Python project.
5
+ Requires-Python: >=3.9
6
+ Description-Content-Type: text/markdown
7
+
8
+ # panofy
9
+
10
+ An empty Python project.
11
+
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/panofy/__init__.py
4
+ src/panofy.egg-info/PKG-INFO
5
+ src/panofy.egg-info/SOURCES.txt
6
+ src/panofy.egg-info/dependency_links.txt
7
+ src/panofy.egg-info/top_level.txt
8
+ tests/test_import.py
@@ -0,0 +1 @@
1
+ panofy
@@ -0,0 +1,6 @@
1
+ from panofy import __version__
2
+
3
+
4
+ def test_version() -> None:
5
+ assert __version__ == "0.0.1"
6
+