pythagix 0.1.2__tar.gz → 0.1.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pythagix
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: A mathy Python package with utilities like LCM, triangle numbers, etc.
5
5
  Author: UltraQuantumScriptor
6
6
  Classifier: Programming Language :: Python :: 3
@@ -26,11 +26,12 @@ Because math shouldn't be a pain 🧮✨
26
26
 
27
27
  ## 📦 Installation
28
28
 
29
-
29
+ ```bash
30
30
  pip install pythagix
31
-
31
+ ```
32
32
 
33
33
  ⚙️ Features
34
+
34
35
  🔢 is_prime(number) — Check if a number is prime
35
36
 
36
37
  📜 prime_list([list]) — Return all primes in a list
@@ -46,15 +47,14 @@ pip install pythagix
46
47
  🔺 triangle_number(n) — Get the n-th triangle number
47
48
 
48
49
  🧪 Examples
49
- python
50
- Copy
51
- Edit
50
+ ```python
52
51
  from pythagix import is_prime, nth_prime, gcd, triangle_number
53
52
 
54
53
  print(is_prime(13)) # True
55
54
  print(nth_prime(10)) # 29
56
55
  print(gcd([12, 18, 24])) # 6
57
56
  print(triangle_number(7)) # 28
57
+ ```
58
58
 
59
59
  📚 Why?
60
60
  pythagix was built to give math students, coders, and tinkerers a fast and fun way to explore number theory in Python. No heavy dependencies. Just pure mathy goodness.
@@ -8,11 +8,12 @@ Because math shouldn't be a pain 🧮✨
8
8
 
9
9
  ## 📦 Installation
10
10
 
11
-
11
+ ```bash
12
12
  pip install pythagix
13
-
13
+ ```
14
14
 
15
15
  ⚙️ Features
16
+
16
17
  🔢 is_prime(number) — Check if a number is prime
17
18
 
18
19
  📜 prime_list([list]) — Return all primes in a list
@@ -28,15 +29,14 @@ pip install pythagix
28
29
  🔺 triangle_number(n) — Get the n-th triangle number
29
30
 
30
31
  🧪 Examples
31
- python
32
- Copy
33
- Edit
32
+ ```python
34
33
  from pythagix import is_prime, nth_prime, gcd, triangle_number
35
34
 
36
35
  print(is_prime(13)) # True
37
36
  print(nth_prime(10)) # 29
38
37
  print(gcd([12, 18, 24])) # 6
39
38
  print(triangle_number(7)) # 28
39
+ ```
40
40
 
41
41
  📚 Why?
42
42
  pythagix was built to give math students, coders, and tinkerers a fast and fun way to explore number theory in Python. No heavy dependencies. Just pure mathy goodness.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pythagix
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: A mathy Python package with utilities like LCM, triangle numbers, etc.
5
5
  Author: UltraQuantumScriptor
6
6
  Classifier: Programming Language :: Python :: 3
@@ -26,11 +26,12 @@ Because math shouldn't be a pain 🧮✨
26
26
 
27
27
  ## 📦 Installation
28
28
 
29
-
29
+ ```bash
30
30
  pip install pythagix
31
-
31
+ ```
32
32
 
33
33
  ⚙️ Features
34
+
34
35
  🔢 is_prime(number) — Check if a number is prime
35
36
 
36
37
  📜 prime_list([list]) — Return all primes in a list
@@ -46,15 +47,14 @@ pip install pythagix
46
47
  🔺 triangle_number(n) — Get the n-th triangle number
47
48
 
48
49
  🧪 Examples
49
- python
50
- Copy
51
- Edit
50
+ ```python
52
51
  from pythagix import is_prime, nth_prime, gcd, triangle_number
53
52
 
54
53
  print(is_prime(13)) # True
55
54
  print(nth_prime(10)) # 29
56
55
  print(gcd([12, 18, 24])) # 6
57
56
  print(triangle_number(7)) # 28
57
+ ```
58
58
 
59
59
  📚 Why?
60
60
  pythagix was built to give math students, coders, and tinkerers a fast and fun way to explore number theory in Python. No heavy dependencies. Just pure mathy goodness.
@@ -6,7 +6,7 @@ with open("README.md", encoding="utf-8") as f:
6
6
 
7
7
  setup(
8
8
  name="pythagix",
9
- version="0.1.2",
9
+ version="0.1.3",
10
10
  author="UltraQuantumScriptor",
11
11
  description="A mathy Python package with utilities like LCM, triangle numbers, etc.",
12
12
  long_description=long_description,
File without changes
File without changes
File without changes
File without changes
File without changes