Initial Refactoring of yoshi_otter and Test Implementation

This commit is contained in:
2022-12-08 05:30:17 -03:00
parent 3b319573ee
commit b24723467e
106 changed files with 1010 additions and 8186 deletions

28
setup.py Normal file
View File

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