john-simple-mathlib 0.1.0__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.
- john_simple_mathlib-0.1.0/PKG-INFO +14 -0
- john_simple_mathlib-0.1.0/README.md +3 -0
- john_simple_mathlib-0.1.0/pyproject.toml +21 -0
- john_simple_mathlib-0.1.0/setup.cfg +4 -0
- john_simple_mathlib-0.1.0/src/john_simple_mathlib.egg-info/PKG-INFO +14 -0
- john_simple_mathlib-0.1.0/src/john_simple_mathlib.egg-info/SOURCES.txt +8 -0
- john_simple_mathlib-0.1.0/src/john_simple_mathlib.egg-info/dependency_links.txt +1 -0
- john_simple_mathlib-0.1.0/src/john_simple_mathlib.egg-info/top_level.txt +1 -0
- john_simple_mathlib-0.1.0/src/mymathlib/__init__.py +1 -0
- john_simple_mathlib-0.1.0/src/mymathlib/operations.py +5 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: john-simple-mathlib
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A simple math library for learning
|
|
5
|
+
Author-email: John <your_email@example.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# MyMathLib
|
|
13
|
+
|
|
14
|
+
Simple math functions for learning purposes.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "john-simple-mathlib"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "A simple math library for learning"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "John", email = "your_email@example.com"}
|
|
14
|
+
]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[tool.setuptools.packages.find]
|
|
21
|
+
where = ["src"]
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: john-simple-mathlib
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A simple math library for learning
|
|
5
|
+
Author-email: John <your_email@example.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# MyMathLib
|
|
13
|
+
|
|
14
|
+
Simple math functions for learning purposes.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
src/john_simple_mathlib.egg-info/PKG-INFO
|
|
4
|
+
src/john_simple_mathlib.egg-info/SOURCES.txt
|
|
5
|
+
src/john_simple_mathlib.egg-info/dependency_links.txt
|
|
6
|
+
src/john_simple_mathlib.egg-info/top_level.txt
|
|
7
|
+
src/mymathlib/__init__.py
|
|
8
|
+
src/mymathlib/operations.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mymathlib
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .operations import add, subtract
|