Implements Tests for Interpolation

This commit is contained in:
2022-12-09 20:58:06 -03:00
parent b24723467e
commit 053a134541
6 changed files with 53 additions and 45 deletions

View File

@@ -1,15 +1,25 @@
import setuptools
import os
with open("yoshi-otter1.3.3/README.md", "r") as fh:
long_description = fh.read()
__name = "yoshi-otter"
__version_sufix = os.environ.get('VERSION_SUFIX')
if not __version_sufix:
__version_sufix = "dev"
__version = f"2.0.{__version_sufix}"
with open("README.md", "r") as fh:
__long_description = fh.read()
setuptools.setup(
name="yoshi-otter", # Replace with your own username
version="1.3.3",
name=__name,
version=__version,
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=__long_description,
long_description_content_type="text/markdown",
url="https://github.com/HideyoshiNakazone/Otter-NumericCalculus.git",
packages=setuptools.find_packages(),