expressionizer 0.5.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.
- expressionizer-0.5.8/PKG-INFO +35 -0
- expressionizer-0.5.8/README.md +22 -0
- expressionizer-0.5.8/expressionizer/expressionizer.egg-info/PKG-INFO +35 -0
- expressionizer-0.5.8/expressionizer/expressionizer.egg-info/SOURCES.txt +6 -0
- expressionizer-0.5.8/expressionizer/expressionizer.egg-info/dependency_links.txt +1 -0
- expressionizer-0.5.8/expressionizer/expressionizer.egg-info/top_level.txt +1 -0
- expressionizer-0.5.8/pyproject.toml +29 -0
- expressionizer-0.5.8/setup.cfg +4 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: expressionizer
|
|
3
|
+
Version: 0.5.8
|
|
4
|
+
Summary: A Python library for symbolic math expressions and evaluation.
|
|
5
|
+
Author-email: Hudson Gouge <hudson.gouge@icloud.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://pypi.org/project/expressionizer/
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# expressionizer
|
|
15
|
+
|
|
16
|
+
A Python library for symbolic math expressions and evaluation.
|
|
17
|
+
|
|
18
|
+
## Features
|
|
19
|
+
- Build and manipulate symbolic mathematical expressions
|
|
20
|
+
- Evaluate expressions with variables
|
|
21
|
+
- Render expressions to human-readable form
|
|
22
|
+
|
|
23
|
+
## Installation
|
|
24
|
+
```bash
|
|
25
|
+
pip install expressionizer
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Usage Example
|
|
29
|
+
```python
|
|
30
|
+
from expressionizer import *
|
|
31
|
+
# Example usage here
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## License
|
|
35
|
+
MIT
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# expressionizer
|
|
2
|
+
|
|
3
|
+
A Python library for symbolic math expressions and evaluation.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
- Build and manipulate symbolic mathematical expressions
|
|
7
|
+
- Evaluate expressions with variables
|
|
8
|
+
- Render expressions to human-readable form
|
|
9
|
+
|
|
10
|
+
## Installation
|
|
11
|
+
```bash
|
|
12
|
+
pip install expressionizer
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage Example
|
|
16
|
+
```python
|
|
17
|
+
from expressionizer import *
|
|
18
|
+
# Example usage here
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## License
|
|
22
|
+
MIT
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: expressionizer
|
|
3
|
+
Version: 0.5.8
|
|
4
|
+
Summary: A Python library for symbolic math expressions and evaluation.
|
|
5
|
+
Author-email: Hudson Gouge <hudson.gouge@icloud.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://pypi.org/project/expressionizer/
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# expressionizer
|
|
15
|
+
|
|
16
|
+
A Python library for symbolic math expressions and evaluation.
|
|
17
|
+
|
|
18
|
+
## Features
|
|
19
|
+
- Build and manipulate symbolic mathematical expressions
|
|
20
|
+
- Evaluate expressions with variables
|
|
21
|
+
- Render expressions to human-readable form
|
|
22
|
+
|
|
23
|
+
## Installation
|
|
24
|
+
```bash
|
|
25
|
+
pip install expressionizer
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Usage Example
|
|
29
|
+
```python
|
|
30
|
+
from expressionizer import *
|
|
31
|
+
# Example usage here
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## License
|
|
35
|
+
MIT
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "expressionizer"
|
|
7
|
+
version = "0.5.8"
|
|
8
|
+
description = "A Python library for symbolic math expressions and evaluation."
|
|
9
|
+
authors = [
|
|
10
|
+
{name = "Hudson Gouge", email = "hudson.gouge@icloud.com"}
|
|
11
|
+
]
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.8"
|
|
14
|
+
license = {text = "MIT"}
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
]
|
|
20
|
+
dependencies = []
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://pypi.org/project/expressionizer/"
|
|
24
|
+
|
|
25
|
+
[tool.setuptools.packages.find]
|
|
26
|
+
where = ["expressionizer"]
|
|
27
|
+
|
|
28
|
+
[tool.setuptools]
|
|
29
|
+
include-package-data = true
|