Skip to content

Commit

Permalink
package all
Browse files Browse the repository at this point in the history
  • Loading branch information
Xanonymous-GitHub committed Mar 8, 2020
1 parent 5d5da2d commit 507af2e
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
Empty file added requirements.txt
Empty file.
23 changes: 23 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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="[email protected]",
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',
)
1 change: 1 addition & 0 deletions xmatrix/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .matrix import *

0 comments on commit 507af2e

Please sign in to comment.