This commit is contained in:
2020-10-24 12:38:41 -03:00
parent 9dd8fc6249
commit 98f1306591
45 changed files with 1503 additions and 0 deletions

26
yoshi-seals1.3.3/setup.py Normal file
View File

@@ -0,0 +1,26 @@
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="yoshi-seals",
version="1.3.3",
author="Vitor Hideyoshi",
author_email="vitor.h.n.batista@gmail.com",
description="Numeric Calculus python module in the topic of Linear Algebra",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/HideyoshiNakazone/Seals-NumericCalculus.git",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent"
],
python_requires='>=3.6',
install_requires=[
'numpy',
'pandas',
],
)