Skip to content

Commit

Permalink
added numpy requirement to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel committed Nov 13, 2020
1 parent b6920ed commit 989a339
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hilbertcurve/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Metadata for this package."""

__package_name__ = "hilbertcurve"
__version__ = "2.0.2"
__version__ = "2.0.3"
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ def find_long_description() -> str:
author_email="gabriel.altay@gmail.com",
license="MIT",
packages=find_packages(exclude=["tests*"]),
install_requires=[],
install_requires=[
"numpy",
],
extras_require={
"dev": ["sphinx", "sphinx_rtd_theme", "sphinx_autodoc_typehints", "pytest"]
},
Expand Down

0 comments on commit 989a339

Please sign in to comment.