This commit is contained in:
2020-05-16 01:25:49 -03:00
commit bb2b938156
5 changed files with 918 additions and 0 deletions

27
setup.py Normal file
View File

@@ -0,0 +1,27 @@
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="Otter", # Replace with your own username
version="1.0",
author="Vitor Hideyoshi",
author_email="vitor.h.n.batista@gmail.com",
description="Algebra Functions Python Module for Numeric Calculus",
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',
],
)