diff --git a/pyproject.toml b/pyproject.toml index f913eca..d142464 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "axon-pypi" -version = "1.0.3" +version = "1.0.4" description = "Multi-dimensional array creation & manipulation library like numpy written from scratch in Python along with a scalar level autograd engine written in C/C++ with Python wrapper" readme = "README.md" license = {text = "MIT"} diff --git a/setup.py b/setup.py index 249aa0a..f53635d 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with codecs.open(os.path.join(current_dir, "README.md"), encoding="utf-8") as file: long_description = file.read() -VERSION = '1.0.3' +VERSION = '1.0.4' DESCRIPTION = 'Multi-dimensional array creation & manipulation library like numpy written from scratch in python along with a scalar level autograd engine written in C/C++ with python wrapper' lib_path = os.path.join(current_dir, 'axon', 'micro', 'libscalar.so')