diff --git a/matops/__init__.py b/matops/__init__.py new file mode 100644 index 0000000..d687190 --- /dev/null +++ b/matops/__init__.py @@ -0,0 +1,3 @@ +"""Matrix Operations""" + +__version__ = "0.0.1" diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..0284567 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,13 @@ +[build-system] +requires = ["flit_core >=3.2,<4"] +build-backend = "flit_core.buildapi" + +[project] +name = "matops" +authors = [{name = "Sarmad Gulzar", email = "sarmadgulzar@hotmail.com"}] +readme = "README.md" +classifiers = ["License :: OSI Approved :: MIT License"] +dynamic = ["version", "description"] + +[project.urls] +Home = "https://github.com/matops/matops-python"