Files
Otter-NumericCalculus/setup.py
Hideyoshi e8a199703d v1.2
v1.1

v1.2

v1.2

v1.2

v1.2
2022-12-09 21:20:01 -03:00

28 lines
915 B
Python

import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="yoshi-otter", # Replace with your own username
version="1.2",
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'
],
)