rowanqol 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.
File without changes
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: rowanqol
3
+ Version: 0.0.1
4
+ Summary: QoL stuff for python!
5
+ Author-email: Rowan <rowanliamjones@gmail.com>
6
+ Requires-Python: >=3.14
7
+ Requires-Dist: thefuzz
8
+ Description-Content-Type: text/markdown
9
+
10
+ # rowanqol
11
+ My library with qol features!!
@@ -0,0 +1,2 @@
1
+ # rowanqol
2
+ My library with qol features!!
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "rowanqol"
7
+ version = "0.0.1"
8
+ description = "QoL stuff for python!"
9
+ readme = "README.md"
10
+ requires-python = ">=3.14"
11
+ authors = [
12
+ { name = "Rowan", email = "rowanliamjones@gmail.com" }
13
+ ]
14
+
15
+ dependencies = [
16
+ "thefuzz"
17
+ ]
18
+
19
+ [tool.hatch.build]
20
+ packages = ["src"]
21
+
22
+ [tool.hatch.build.sources]
23
+ "src" = "rowanqol"
24
+
@@ -0,0 +1 @@
1
+ from .inputs import int_input, float_input
@@ -0,0 +1,13 @@
1
+ def int_input():
2
+ while True:
3
+ num = int(input("Enter a number: "))
4
+ if num.is_integer():
5
+ break
6
+ return num
7
+
8
+ def float_input():
9
+ while True:
10
+ num = float(input("Enter a number: "))
11
+ if isinstance(num, float):
12
+ break
13
+ return num