pythagix 0.1.2__tar.gz → 0.1.4__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,20 +1,16 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pythagix
3
- Version: 0.1.2
3
+ Version: 0.1.4
4
4
  Summary: A mathy Python package with utilities like LCM, triangle numbers, etc.
5
5
  Author: UltraQuantumScriptor
6
+ License: MIT
6
7
  Classifier: Programming Language :: Python :: 3
7
8
  Classifier: License :: OSI Approved :: MIT License
8
9
  Requires-Python: >=3.6
9
10
  Description-Content-Type: text/markdown
10
11
  License-File: LICENSE
11
- Dynamic: author
12
- Dynamic: classifier
13
- Dynamic: description
14
- Dynamic: description-content-type
15
12
  Dynamic: license-file
16
13
  Dynamic: requires-python
17
- Dynamic: summary
18
14
 
19
15
  # 🧠 pythagix
20
16
 
@@ -26,11 +22,12 @@ Because math shouldn't be a pain 🧮✨
26
22
 
27
23
  ## 📦 Installation
28
24
 
29
-
25
+ ```bash
30
26
  pip install pythagix
31
-
27
+ ```
32
28
 
33
29
  ⚙️ Features
30
+
34
31
  🔢 is_prime(number) — Check if a number is prime
35
32
 
36
33
  📜 prime_list([list]) — Return all primes in a list
@@ -46,15 +43,14 @@ pip install pythagix
46
43
  🔺 triangle_number(n) — Get the n-th triangle number
47
44
 
48
45
  🧪 Examples
49
- python
50
- Copy
51
- Edit
46
+ ```python
52
47
  from pythagix import is_prime, nth_prime, gcd, triangle_number
53
48
 
54
49
  print(is_prime(13)) # True
55
50
  print(nth_prime(10)) # 29
56
51
  print(gcd([12, 18, 24])) # 6
57
52
  print(triangle_number(7)) # 28
53
+ ```
58
54
 
59
55
  📚 Why?
60
56
  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.
@@ -0,0 +1,19 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "pythagix"
7
+ version = "0.1.4"
8
+ description = "A mathy Python package with utilities like LCM, triangle numbers, etc."
9
+ readme = "README.md"
10
+ requires-python = ">=3.6"
11
+ authors = [
12
+ { name = "UltraQuantumScriptor" }
13
+ ]
14
+ license = { text = "MIT" }
15
+ classifiers = [
16
+ "Programming Language :: Python :: 3",
17
+ "License :: OSI Approved :: MIT License"
18
+ ]
19
+ dependencies = []
@@ -1,20 +1,16 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pythagix
3
- Version: 0.1.2
3
+ Version: 0.1.4
4
4
  Summary: A mathy Python package with utilities like LCM, triangle numbers, etc.
5
5
  Author: UltraQuantumScriptor
6
+ License: MIT
6
7
  Classifier: Programming Language :: Python :: 3
7
8
  Classifier: License :: OSI Approved :: MIT License
8
9
  Requires-Python: >=3.6
9
10
  Description-Content-Type: text/markdown
10
11
  License-File: LICENSE
11
- Dynamic: author
12
- Dynamic: classifier
13
- Dynamic: description
14
- Dynamic: description-content-type
15
12
  Dynamic: license-file
16
13
  Dynamic: requires-python
17
- Dynamic: summary
18
14
 
19
15
  # 🧠 pythagix
20
16
 
@@ -26,11 +22,12 @@ Because math shouldn't be a pain 🧮✨
26
22
 
27
23
  ## 📦 Installation
28
24
 
29
-
25
+ ```bash
30
26
  pip install pythagix
31
-
27
+ ```
32
28
 
33
29
  ⚙️ Features
30
+
34
31
  🔢 is_prime(number) — Check if a number is prime
35
32
 
36
33
  📜 prime_list([list]) — Return all primes in a list
@@ -46,15 +43,14 @@ pip install pythagix
46
43
  🔺 triangle_number(n) — Get the n-th triangle number
47
44
 
48
45
  🧪 Examples
49
- python
50
- Copy
51
- Edit
46
+ ```python
52
47
  from pythagix import is_prime, nth_prime, gcd, triangle_number
53
48
 
54
49
  print(is_prime(13)) # True
55
50
  print(nth_prime(10)) # 29
56
51
  print(gcd([12, 18, 24])) # 6
57
52
  print(triangle_number(7)) # 28
53
+ ```
58
54
 
59
55
  📚 Why?
60
56
  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,7 @@
1
1
  LICENSE
2
2
  MANIFEST.in
3
3
  README.md
4
+ pyproject.toml
4
5
  setup.py
5
6
  pythagix/__init__.py
6
7
  pythagix/core.py
@@ -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.4",
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