From 507af2e823a409b54c872e94fae3938e103e6d73 Mon Sep 17 00:00:00 2001 From: Xanonymous Date: Mon, 9 Mar 2020 02:02:43 +0800 Subject: [PATCH] package all --- requirements.txt | 0 setup.py | 23 +++++++++++++++++++++++ xmatrix/__init__.py | 1 + 3 files changed, 24 insertions(+) create mode 100644 requirements.txt create mode 100644 setup.py 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 *