Adds setup.py

This commit is contained in:
2022-12-06 22:59:41 -03:00
parent 1d62ac70df
commit c8f3925675
3 changed files with 51 additions and 14 deletions

35
setup.py Normal file
View File

@@ -0,0 +1,35 @@
import setuptools
import os
__name = "yoshi_seals"
__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=__name,
version=__version,
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',
],
)