AxiomX 0.1.0__tar.gz → 0.1.0.dev8__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,14 @@
1
+ import time
2
+
3
+ print("AxiomX loading...")
4
+ time.sleep(3)
5
+ print("AxiomX is ready to use!")
6
+
7
+ import AxiomX.constants
8
+ import AxiomX.calculus
9
+ import AxiomX.functions
10
+ import AxiomX.exp
11
+ import AxiomX.trig
12
+ import AxiomX.hyperbolic
13
+
14
+ version = '0.1.0'
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: AxiomX
3
+ Version: 0.1.0.dev8
4
+ Summary: A dynamic Python math library containing numerous mathematical functions implemented from scratch.
5
+ Author: Eric Joseph
6
+ License: MIT
7
+ Requires-Python: >=2.7
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Dynamic: license-file
11
+ Dynamic: requires-python
12
+
13
+ # AxiomX 0.1.0.dev8
14
+
15
+ AxiomX is proud to release the 0.1.0.dev8 bugfix release. We're extremely sorry for the inconvenience we have caused. We had realized about a bug running in our module. We have fixed it and as this is a bugfix release, we have not added anything new.
16
+ \
17
+ \
18
+ This module is licensed under MIT. No one is allowed to copy code from AxiomX. Hope you all enjoy AxiomX.
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 Eric Joseph
3
+ Copyright (c) 2026 Eric Joseph
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a
6
6
  copy of this software and associated documentation files (the
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: AxiomX
3
+ Version: 0.1.0.dev8
4
+ Summary: A dynamic Python math library containing numerous mathematical functions implemented from scratch.
5
+ Author: Eric Joseph
6
+ License: MIT
7
+ Requires-Python: >=2.7
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Dynamic: license-file
11
+ Dynamic: requires-python
12
+
13
+ # AxiomX 0.1.0.dev8
14
+
15
+ AxiomX is proud to release the 0.1.0.dev8 bugfix release. We're extremely sorry for the inconvenience we have caused. We had realized about a bug running in our module. We have fixed it and as this is a bugfix release, we have not added anything new.
16
+ \
17
+ \
18
+ This module is licensed under MIT. No one is allowed to copy code from AxiomX. Hope you all enjoy AxiomX.
@@ -0,0 +1,6 @@
1
+ # AxiomX 0.1.0.dev8
2
+
3
+ AxiomX is proud to release the 0.1.0.dev8 bugfix release. We're extremely sorry for the inconvenience we have caused. We had realized about a bug running in our module. We have fixed it and as this is a bugfix release, we have not added anything new.
4
+ \
5
+ \
6
+ This module is licensed under MIT. No one is allowed to copy code from AxiomX. Hope you all enjoy AxiomX.
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "AxiomX"
7
- version = "0.1.0"
7
+ version = "0.1.0.dev8"
8
8
  authors = [
9
9
  { name = "Eric Joseph" }
10
10
  ]
11
11
  description = "A dynamic Python math library containing numerous mathematical functions implemented from scratch."
12
12
  readme = "README.md"
13
13
  license = { text = "MIT" }
14
- requires-python = ">=2.7"
14
+ requires-python = ">=2.7"
@@ -2,10 +2,10 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="AxiomX", # rename to your project name
5
- version="0.1.0",
5
+ version="0.1.0.dev8",
6
6
  description="A custom Python math library with special functions.",
7
7
  author="Eric Joseph", # change if needed
8
8
  packages=find_packages(),
9
9
  install_requires=[],
10
10
  python_requires=">=2.7",
11
- )
11
+ )
@@ -1,14 +0,0 @@
1
- import time
2
-
3
- print("AxiomX loading...")
4
- time.sleep(3)
5
- print("AxiomX is ready to use!")
6
-
7
- import constants
8
- import calculus
9
- import functions
10
- import exp
11
- import trig
12
- import hyperbolic
13
-
14
- version = '0.1.0'
@@ -1,162 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: AxiomX
3
- Version: 0.1.0
4
- Summary: A dynamic Python math library containing numerous mathematical functions implemented from scratch.
5
- Author: Eric Joseph
6
- License: MIT
7
- Requires-Python: >=2.7
8
- Description-Content-Type: text/markdown
9
- License-File: LICENSE
10
- Dynamic: license-file
11
- Dynamic: requires-python
12
-
13
- # 🔢 AxiomX
14
-
15
- **AxiomX** is a lightweight pure-Python mathematical library focused on implementing core numerical methods and elementary functions **from first principles** — without relying heavily on Python’s built-in `math` module.
16
-
17
- It is designed for:
18
-
19
- - Learning numerical analysis
20
- - Exploring series expansions & iterative solvers
21
- - Building symbolic/numeric math engines
22
- - Educational and experimental use
23
-
24
- ---
25
-
26
- # 🌐 Website Notice
27
-
28
- **We have permanently shifted to:**
29
- 👉 https://axiomxpy.wordpress.com
30
-
31
- All official announcements, documentation updates, and project news will now be published on this site.
32
-
33
- Please update any old bookmarks or links to ensure you are accessing the latest resources.
34
-
35
- ---
36
-
37
- ## 📦 Package Structure
38
-
39
- ```
40
- AxiomX/
41
-
42
- ├── constants.py # Mathematical constants
43
- ├── functions.py # Utility & root functions
44
- ├── exp.py # Exponential & logarithmic
45
- ├── trig.py # Trigonometric & inverse trig
46
- ├── hyperbolic.py # Hyperbolic functions
47
- ├── calculus.py # Numerical integration
48
- └── __init__.py # Loader & module imports
49
- ```
50
-
51
- ---
52
-
53
- ## 🚀 Installation
54
-
55
- ```bash
56
- pip install axiomx
57
- ```
58
-
59
- Or locally:
60
-
61
- ```bash
62
- git clone https://github.com/yourname/axiomx
63
- cd axiomx
64
- pip install .
65
- ```
66
-
67
- ---
68
-
69
- ## ▶ Importing
70
-
71
- ```python
72
- import AxiomX
73
- from AxiomX import trig, exp, calculus, constants
74
- ```
75
-
76
- ---
77
-
78
- # 📐 constants.py
79
-
80
- Provides fundamental mathematical constants:
81
-
82
- ```
83
- pi, e, lemniscate, gauss, euler_mascheroni,
84
- sqrt_2, sqrt_3, sqrt_5, golden_ratio
85
- ```
86
-
87
- ---
88
-
89
- # 🧮 functions.py
90
-
91
- ```
92
- absolute(x)
93
- sqrt(a, x0=None, tol=1e-30, max_iter=20)
94
- ```
95
-
96
- ---
97
-
98
- # 📈 exp.py
99
-
100
- ```
101
- exp(x)
102
- ln(x)
103
- ```
104
-
105
- ---
106
-
107
- # 📐 trig.py
108
-
109
- ```
110
- radians(deg)
111
- degrees(rad)
112
- sin(x, terms=20)
113
- cos(x)
114
- tan(x)
115
- cot(x)
116
- sec(x)
117
- cosec(x)
118
- arcsin(x, iterations=10)
119
- arccos(x)
120
- arctan(x)
121
- arccot(x)
122
- arcsec(x)
123
- arccosec(x)
124
- ```
125
-
126
- ---
127
-
128
- # 🔁 hyperbolic.py
129
-
130
- ```
131
- sinh(x)
132
- cosh(x)
133
- tanh(x)
134
- coth(x)
135
- ```
136
-
137
- ---
138
-
139
- # ∫ calculus.py
140
-
141
- ```
142
- integrate(function, lowlim, uplim, n=10000)
143
- ```
144
-
145
- ---
146
-
147
- ## 🧪 Example
148
-
149
- ```python
150
- from AxiomX.constants import pi
151
- from AxiomX.trig import sin
152
- from AxiomX.calculus import integrate
153
-
154
- print(sin(pi/2))
155
- print(integrate(lambda x: x**2, 0, 1))
156
- ```
157
-
158
- ---
159
-
160
- ## 📜 License
161
-
162
- MIT License
axiomx-0.1.0/PKG-INFO DELETED
@@ -1,162 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: AxiomX
3
- Version: 0.1.0
4
- Summary: A dynamic Python math library containing numerous mathematical functions implemented from scratch.
5
- Author: Eric Joseph
6
- License: MIT
7
- Requires-Python: >=2.7
8
- Description-Content-Type: text/markdown
9
- License-File: LICENSE
10
- Dynamic: license-file
11
- Dynamic: requires-python
12
-
13
- # 🔢 AxiomX
14
-
15
- **AxiomX** is a lightweight pure-Python mathematical library focused on implementing core numerical methods and elementary functions **from first principles** — without relying heavily on Python’s built-in `math` module.
16
-
17
- It is designed for:
18
-
19
- - Learning numerical analysis
20
- - Exploring series expansions & iterative solvers
21
- - Building symbolic/numeric math engines
22
- - Educational and experimental use
23
-
24
- ---
25
-
26
- # 🌐 Website Notice
27
-
28
- **We have permanently shifted to:**
29
- 👉 https://axiomxpy.wordpress.com
30
-
31
- All official announcements, documentation updates, and project news will now be published on this site.
32
-
33
- Please update any old bookmarks or links to ensure you are accessing the latest resources.
34
-
35
- ---
36
-
37
- ## 📦 Package Structure
38
-
39
- ```
40
- AxiomX/
41
-
42
- ├── constants.py # Mathematical constants
43
- ├── functions.py # Utility & root functions
44
- ├── exp.py # Exponential & logarithmic
45
- ├── trig.py # Trigonometric & inverse trig
46
- ├── hyperbolic.py # Hyperbolic functions
47
- ├── calculus.py # Numerical integration
48
- └── __init__.py # Loader & module imports
49
- ```
50
-
51
- ---
52
-
53
- ## 🚀 Installation
54
-
55
- ```bash
56
- pip install axiomx
57
- ```
58
-
59
- Or locally:
60
-
61
- ```bash
62
- git clone https://github.com/yourname/axiomx
63
- cd axiomx
64
- pip install .
65
- ```
66
-
67
- ---
68
-
69
- ## ▶ Importing
70
-
71
- ```python
72
- import AxiomX
73
- from AxiomX import trig, exp, calculus, constants
74
- ```
75
-
76
- ---
77
-
78
- # 📐 constants.py
79
-
80
- Provides fundamental mathematical constants:
81
-
82
- ```
83
- pi, e, lemniscate, gauss, euler_mascheroni,
84
- sqrt_2, sqrt_3, sqrt_5, golden_ratio
85
- ```
86
-
87
- ---
88
-
89
- # 🧮 functions.py
90
-
91
- ```
92
- absolute(x)
93
- sqrt(a, x0=None, tol=1e-30, max_iter=20)
94
- ```
95
-
96
- ---
97
-
98
- # 📈 exp.py
99
-
100
- ```
101
- exp(x)
102
- ln(x)
103
- ```
104
-
105
- ---
106
-
107
- # 📐 trig.py
108
-
109
- ```
110
- radians(deg)
111
- degrees(rad)
112
- sin(x, terms=20)
113
- cos(x)
114
- tan(x)
115
- cot(x)
116
- sec(x)
117
- cosec(x)
118
- arcsin(x, iterations=10)
119
- arccos(x)
120
- arctan(x)
121
- arccot(x)
122
- arcsec(x)
123
- arccosec(x)
124
- ```
125
-
126
- ---
127
-
128
- # 🔁 hyperbolic.py
129
-
130
- ```
131
- sinh(x)
132
- cosh(x)
133
- tanh(x)
134
- coth(x)
135
- ```
136
-
137
- ---
138
-
139
- # ∫ calculus.py
140
-
141
- ```
142
- integrate(function, lowlim, uplim, n=10000)
143
- ```
144
-
145
- ---
146
-
147
- ## 🧪 Example
148
-
149
- ```python
150
- from AxiomX.constants import pi
151
- from AxiomX.trig import sin
152
- from AxiomX.calculus import integrate
153
-
154
- print(sin(pi/2))
155
- print(integrate(lambda x: x**2, 0, 1))
156
- ```
157
-
158
- ---
159
-
160
- ## 📜 License
161
-
162
- MIT License
axiomx-0.1.0/README.md DELETED
@@ -1,150 +0,0 @@
1
- # 🔢 AxiomX
2
-
3
- **AxiomX** is a lightweight pure-Python mathematical library focused on implementing core numerical methods and elementary functions **from first principles** — without relying heavily on Python’s built-in `math` module.
4
-
5
- It is designed for:
6
-
7
- - Learning numerical analysis
8
- - Exploring series expansions & iterative solvers
9
- - Building symbolic/numeric math engines
10
- - Educational and experimental use
11
-
12
- ---
13
-
14
- # 🌐 Website Notice
15
-
16
- **We have permanently shifted to:**
17
- 👉 https://axiomxpy.wordpress.com
18
-
19
- All official announcements, documentation updates, and project news will now be published on this site.
20
-
21
- Please update any old bookmarks or links to ensure you are accessing the latest resources.
22
-
23
- ---
24
-
25
- ## 📦 Package Structure
26
-
27
- ```
28
- AxiomX/
29
-
30
- ├── constants.py # Mathematical constants
31
- ├── functions.py # Utility & root functions
32
- ├── exp.py # Exponential & logarithmic
33
- ├── trig.py # Trigonometric & inverse trig
34
- ├── hyperbolic.py # Hyperbolic functions
35
- ├── calculus.py # Numerical integration
36
- └── __init__.py # Loader & module imports
37
- ```
38
-
39
- ---
40
-
41
- ## 🚀 Installation
42
-
43
- ```bash
44
- pip install axiomx
45
- ```
46
-
47
- Or locally:
48
-
49
- ```bash
50
- git clone https://github.com/yourname/axiomx
51
- cd axiomx
52
- pip install .
53
- ```
54
-
55
- ---
56
-
57
- ## ▶ Importing
58
-
59
- ```python
60
- import AxiomX
61
- from AxiomX import trig, exp, calculus, constants
62
- ```
63
-
64
- ---
65
-
66
- # 📐 constants.py
67
-
68
- Provides fundamental mathematical constants:
69
-
70
- ```
71
- pi, e, lemniscate, gauss, euler_mascheroni,
72
- sqrt_2, sqrt_3, sqrt_5, golden_ratio
73
- ```
74
-
75
- ---
76
-
77
- # 🧮 functions.py
78
-
79
- ```
80
- absolute(x)
81
- sqrt(a, x0=None, tol=1e-30, max_iter=20)
82
- ```
83
-
84
- ---
85
-
86
- # 📈 exp.py
87
-
88
- ```
89
- exp(x)
90
- ln(x)
91
- ```
92
-
93
- ---
94
-
95
- # 📐 trig.py
96
-
97
- ```
98
- radians(deg)
99
- degrees(rad)
100
- sin(x, terms=20)
101
- cos(x)
102
- tan(x)
103
- cot(x)
104
- sec(x)
105
- cosec(x)
106
- arcsin(x, iterations=10)
107
- arccos(x)
108
- arctan(x)
109
- arccot(x)
110
- arcsec(x)
111
- arccosec(x)
112
- ```
113
-
114
- ---
115
-
116
- # 🔁 hyperbolic.py
117
-
118
- ```
119
- sinh(x)
120
- cosh(x)
121
- tanh(x)
122
- coth(x)
123
- ```
124
-
125
- ---
126
-
127
- # ∫ calculus.py
128
-
129
- ```
130
- integrate(function, lowlim, uplim, n=10000)
131
- ```
132
-
133
- ---
134
-
135
- ## 🧪 Example
136
-
137
- ```python
138
- from AxiomX.constants import pi
139
- from AxiomX.trig import sin
140
- from AxiomX.calculus import integrate
141
-
142
- print(sin(pi/2))
143
- print(integrate(lambda x: x**2, 0, 1))
144
- ```
145
-
146
- ---
147
-
148
- ## 📜 License
149
-
150
- MIT License
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes