Skip to content

Commit

Permalink
bugfix:setup find package
Browse files Browse the repository at this point in the history
This commit fixes setup file find package error. Now both Numba and
NumPy code can be found.
  • Loading branch information
armantekinalp committed Nov 2, 2020
1 parent ff449c8 commit 54f8ed7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion optional-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
numba
cma
moviepy
ffmpeg
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,9 @@ def run(self):
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=["elastica"],
#packages=["elastica"],
package_dir={"elastica": "./elastica"},
packages=find_packages(),
license="MIT",
classifiers=[
# Trove classifiers
Expand Down

0 comments on commit 54f8ed7

Please sign in to comment.