Skip to content

Commit 989a339

Browse files
author
Gabriel
committed
added numpy requirement to setup.py
1 parent b6920ed commit 989a339

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

hilbertcurve/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Metadata for this package."""
22

33
__package_name__ = "hilbertcurve"
4-
__version__ = "2.0.2"
4+
__version__ = "2.0.3"

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ def find_long_description() -> str:
5252
author_email="gabriel.altay@gmail.com",
5353
license="MIT",
5454
packages=find_packages(exclude=["tests*"]),
55-
install_requires=[],
55+
install_requires=[
56+
"numpy",
57+
],
5658
extras_require={
5759
"dev": ["sphinx", "sphinx_rtd_theme", "sphinx_autodoc_typehints", "pytest"]
5860
},

0 commit comments

Comments
 (0)