RandomInts 0.0.6__tar.gz → 0.0.8__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,30 @@
1
+ Metadata-Version: 2.4
2
+ Name: RandomInts
3
+ Version: 0.0.8
4
+ Summary: A custom random number generator built from scratch. Function #1 Rand() function #2 RandSeed(45).
5
+ Author-email: wawa2016-here <lemver2016@gmail.com>
6
+ Requires-Python: >=3.7
7
+ Description-Content-Type: text/markdown
8
+
9
+ # RandomInts
10
+ *A custom random number generator built from scratch.
11
+ *And to Import it you use from RandomInts import Rand
12
+
13
+ ## Functions Included:
14
+ * **Rand()**: Generates a random integer.
15
+ * **RandSeed(seed)**: Sets a custom seed value for generation.
16
+
17
+ ## Installation
18
+ ```bash
19
+ pip install RandomInts
20
+ ```
21
+
22
+ ## Quick Start
23
+ ```python
24
+ from RandomInts import Rand
25
+ ```
26
+
27
+ # Try it out
28
+ ```python
29
+ Rand()
30
+ RandSeed(23)
@@ -0,0 +1,22 @@
1
+ # RandomInts
2
+ *A custom random number generator built from scratch.
3
+ *And to Import it you use from RandomInts import Rand
4
+
5
+ ## Functions Included:
6
+ * **Rand()**: Generates a random integer.
7
+ * **RandSeed(seed)**: Sets a custom seed value for generation.
8
+
9
+ ## Installation
10
+ ```bash
11
+ pip install RandomInts
12
+ ```
13
+
14
+ ## Quick Start
15
+ ```python
16
+ from RandomInts import Rand
17
+ ```
18
+
19
+ # Try it out
20
+ ```python
21
+ Rand()
22
+ RandSeed(23)
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.4
2
+ Name: RandomInts
3
+ Version: 0.0.8
4
+ Summary: A custom random number generator built from scratch. Function #1 Rand() function #2 RandSeed(45).
5
+ Author-email: wawa2016-here <lemver2016@gmail.com>
6
+ Requires-Python: >=3.7
7
+ Description-Content-Type: text/markdown
8
+
9
+ # RandomInts
10
+ *A custom random number generator built from scratch.
11
+ *And to Import it you use from RandomInts import Rand
12
+
13
+ ## Functions Included:
14
+ * **Rand()**: Generates a random integer.
15
+ * **RandSeed(seed)**: Sets a custom seed value for generation.
16
+
17
+ ## Installation
18
+ ```bash
19
+ pip install RandomInts
20
+ ```
21
+
22
+ ## Quick Start
23
+ ```python
24
+ from RandomInts import Rand
25
+ ```
26
+
27
+ # Try it out
28
+ ```python
29
+ Rand()
30
+ RandSeed(23)
@@ -1,3 +1,4 @@
1
+ README.md
1
2
  pyproject.toml
2
3
  RandomInts.egg-info/PKG-INFO
3
4
  RandomInts.egg-info/SOURCES.txt
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "RandomInts"
7
- version = "0.0.6"
7
+ version = "0.0.8"
8
8
  authors = [
9
9
  { name="wawa2016-here", email="lemver2016@gmail.com" },
10
10
  ]
randomints-0.0.6/PKG-INFO DELETED
@@ -1,7 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: RandomInts
3
- Version: 0.0.6
4
- Summary: A custom random number generator built from scratch. Function #1 Rand() function #2 RandSeed(45).
5
- Author-email: wawa2016-here <lemver2016@gmail.com>
6
- Requires-Python: >=3.7
7
- Description-Content-Type: text/markdown
@@ -1,7 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: RandomInts
3
- Version: 0.0.6
4
- Summary: A custom random number generator built from scratch. Function #1 Rand() function #2 RandSeed(45).
5
- Author-email: wawa2016-here <lemver2016@gmail.com>
6
- Requires-Python: >=3.7
7
- Description-Content-Type: text/markdown
File without changes