yhmath 1.0.2__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.
- yhmath-1.0.2/PKG-INFO +9 -0
- yhmath-1.0.2/pyproject.toml +3 -0
- yhmath-1.0.2/setup.cfg +4 -0
- yhmath-1.0.2/setup.py +17 -0
- yhmath-1.0.2/yhmath.egg-info/PKG-INFO +9 -0
- yhmath-1.0.2/yhmath.egg-info/SOURCES.txt +8 -0
- yhmath-1.0.2/yhmath.egg-info/dependency_links.txt +1 -0
- yhmath-1.0.2/yhmath.egg-info/entry_points.txt +2 -0
- yhmath-1.0.2/yhmath.egg-info/requires.txt +1 -0
- yhmath-1.0.2/yhmath.egg-info/top_level.txt +1 -0
yhmath-1.0.2/PKG-INFO
ADDED
yhmath-1.0.2/setup.cfg
ADDED
yhmath-1.0.2/setup.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="yhmath",
|
|
5
|
+
version="1.0.2",
|
|
6
|
+
packages=find_packages(),
|
|
7
|
+
install_requires=[
|
|
8
|
+
"numpy"
|
|
9
|
+
],
|
|
10
|
+
entry_points={
|
|
11
|
+
"console_scripts": [
|
|
12
|
+
"mathpy = mathpy.__main__:main",
|
|
13
|
+
],
|
|
14
|
+
},
|
|
15
|
+
description="A math python package ",
|
|
16
|
+
author="Youssef Hussein",
|
|
17
|
+
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
numpy
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|