Skip to content

Commit

Permalink
Merge pull request #20 from ecmwf/hotfix/python-setup
Browse files Browse the repository at this point in the history
Hotfix/python setup
  • Loading branch information
ChrisspyB authored Oct 21, 2024
2 parents 278fb4c + 586d3fb commit bc273f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include pygribjump/gribjump_c.h
include pygribjump/src/pygribjump/gribjump_c.h
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@
url="https://github.com/ecmwf/gribjump",
author="ECMWF",
author_email="software.support@ecmwf.int",
packages=find_packages(exclude=("docs", "tests")),
packages = ["pygribjump"],
package_dir={"": ".",
"pygribjump": "./pygribjump/src/pygribjump"
},
include_package_data=True,
install_requires=["cffi", "findlibs", "numpy"],
zip_safe=False,
Expand Down

0 comments on commit bc273f6

Please sign in to comment.