diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..feb08f6 --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +from setuptools import setup, find_packages + +with open("README.md", "r") as fh: + long_description = fh.read() + +setup( + name="example-pkg-YOUR-USERNAME-HERE", + version="1.0", + author="Xanonymous", + author_email="trusaidlin@gmail.com", + description="Help you calculate matrix.", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/Xanonymous-GitHub/xmatrix", + packages=find_packages(), + platforms=["all"], + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], + python_requires='>=3.6', +) diff --git a/xmatrix/__init__.py b/xmatrix/__init__.py index e69de29..cf1f5f4 100644 --- a/xmatrix/__init__.py +++ b/xmatrix/__init__.py @@ -0,0 +1 @@ +from .matrix import *