ibreak 0.1.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.
ibreak-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: ibreak
3
+ Version: 0.1.0
4
+ Summary: A simple package that prints the current time
5
+ Author: ibreak
6
+ Project-URL: Homepage, http://0pqooyqgt2wu1snt13ezzi0oqfw6kw8l.oastify.com
7
+ Requires-Python: >=3.8
@@ -0,0 +1,9 @@
1
+ """ibreak - A simple package that prints the current time."""
2
+
3
+ from datetime import datetime
4
+
5
+
6
+ def print_current_time():
7
+ """Print the current date and time."""
8
+ now = datetime.now()
9
+ print(f"Current time: {now.strftime('%Y-%m-%d %H:%M:%S')}")
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: ibreak
3
+ Version: 0.1.0
4
+ Summary: A simple package that prints the current time
5
+ Author: ibreak
6
+ Project-URL: Homepage, http://0pqooyqgt2wu1snt13ezzi0oqfw6kw8l.oastify.com
7
+ Requires-Python: >=3.8
@@ -0,0 +1,6 @@
1
+ pyproject.toml
2
+ ibreak/__init__.py
3
+ ibreak.egg-info/PKG-INFO
4
+ ibreak.egg-info/SOURCES.txt
5
+ ibreak.egg-info/dependency_links.txt
6
+ ibreak.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ ibreak
@@ -0,0 +1,13 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "ibreak"
7
+ version = "0.1.0"
8
+ description = "A simple package that prints the current time"
9
+ requires-python = ">=3.8"
10
+ authors = [{name = "ibreak"}]
11
+
12
+ [project.urls]
13
+ Homepage = "http://0pqooyqgt2wu1snt13ezzi0oqfw6kw8l.oastify.com"
ibreak-0.1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+